-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.dart
34 lines (30 loc) · 849 Bytes
/
main.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import 'package:flutter/material.dart';
import 'package:learn_flutter/list/learn_list.dart';
import 'package:learn_flutter/list/learn_animated_list.dart';
import 'package:learn_flutter/list/audioplayer.dart';
void main() {
runApp(MyApp(items: _buildMainRouteList()));
}
Map<String, Widget> _buildMainRouteList() {
return {
"Learn List": ListRoute(),
"Simple List": SimpleListRoute(),
"AnimatedList": const AnimatedListRoute(),
"AudioPayer": const AudioPlayerRoute(),
};
}
class MyApp extends StatelessWidget {
final Map<String, Widget> items;
const MyApp({super.key, required this.items});
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text("List"),
),
body: buildSimpleList(items),
),
);
}
}