blob: 2ad0fb9a1801d0b2f012874d396b33e2b56d41f3 (
plain) (
blame)
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
35
|
import 'dart:async';
import 'package:flutter/material.dart';
import 'pages/Home.dart';
import 'pages/Apps.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
final Stream<DateTime> time$ = Stream.periodic(Duration(seconds: 1), (_x) => DateTime.now()).asBroadcastStream();
@override
void dispose() {
time$.drain();
}
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'owyn launcher',
home: Scaffold(
body: PageView(
controller: PageController(keepPage: true),
children: [
HomeView(time$, defaultTime: DateTime.now()),
AppsView(),
],
),
),
);
}
}
|