18 lines
415 B
Dart
18 lines
415 B
Dart
import 'package:flutter/cupertino.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'ToDoListScreen.dart';
|
|
|
|
class ToDoApp extends StatelessWidget {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MaterialApp(
|
|
debugShowCheckedModeBanner: false,
|
|
theme: ThemeData(
|
|
primarySwatch: Colors.orange,
|
|
hintColor: Colors.white,
|
|
),
|
|
home: ToDoListScreen(),
|
|
);
|
|
}
|
|
} |