main.dart 488 B

1234567891011121314151617181920212223
  1. import 'package:flutter/material.dart';
  2. import 'package:flutter_cocktail/homepage.dart';
  3. const MaterialColor myColor = Colors.brown;
  4. void main() {
  5. runApp(MyApp());
  6. }
  7. class MyApp extends StatelessWidget {
  8. @override
  9. Widget build(BuildContext context) {
  10. return MaterialApp(
  11. debugShowCheckedModeBanner: false,
  12. title: "Cocktail App",
  13. theme: ThemeData(
  14. primarySwatch: myColor,
  15. fontFamily: "Pacifico",
  16. ),
  17. home: HomePage(),
  18. );
  19. }
  20. }