Untitled
unknown
plain_text
6 months ago
588 B
3
Indexable
import 'package:flutter/material.dart'; void main() { runApp(MyApp()); } class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( title: 'Brahmacharya 90 Days Challenge', theme: ThemeData( primarySwatch: Colors.blue, ), home: HomePage(), ); } } class HomePage extends StatelessWidget { @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar(title: Text('90 Days Challenge')), body: Center(child: Text('Welcome to the Challenge!')), ); } }
Editor is loading...
Leave a Comment