scaffolding

This commit is contained in:
John Smith 2023-01-08 22:27:33 -05:00
parent 6def7a9eee
commit c22d6fcff8
21 changed files with 1037 additions and 117 deletions

25
lib/app.dart Normal file
View file

@ -0,0 +1,25 @@
import 'package:flutter/material.dart';
import 'package:animated_theme_switcher/animated_theme_switcher.dart';s
class VeilidChatApp extends StatelessWidget {
const VeilidChatApp({
Key? key,
required this.theme,
}) : super(key: key);
final ThemeData theme;
@override
Widget build(BuildContext context) {
return ThemeProvider(
initTheme: theme,
builder: (_, theme) {
return MaterialApp(
title: 'VeilidChat',
theme: theme,
home: const MyHomePage(title: 'Flutter Demo Home Page'),
);
},
);
}
}