25 lines
429 B
Dart
25 lines
429 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
import 'theme.dart';
|
|
|
|
void main() {
|
|
runApp(const MyApp());
|
|
}
|
|
|
|
class MyApp extends StatelessWidget {
|
|
const MyApp({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MaterialApp(
|
|
title: 'Flutter Demo',
|
|
theme: lightTheme,
|
|
darkTheme: darkTheme,
|
|
home: Scaffold(
|
|
appBar: AppBar(
|
|
title: Text('ietn'),
|
|
)),
|
|
);
|
|
}
|
|
}
|