Untitled
unknown
plain_text
a year ago
588 B
6
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