]> git.cworth.org Git - lmno.games/blob - flutterempires/lib/main.dart
Prepare directories for merge into lmno.games
[lmno.games] / flutterempires / lib / main.dart
1 import 'package:flutter/material.dart';
2 import 'package:flutterempires/player.dart';
3
4 void main() {
5   runApp(MyApp());
6 }
7
8 class MyApp extends StatelessWidget {
9   // This widget is the root of your application.
10   @override
11   Widget build(BuildContext context) {
12     return MaterialApp(
13       title: 'Empires',
14       theme: ThemeData(
15         // This is the theme of your application.
16         //
17         // Try running your application with "flutter run". You'll see the
18         // application has a blue toolbar. Then, without quitting the app, try
19         // changing the primarySwatch below to Colors.green and then invoke
20         // "hot reload" (press "r" in the console where you ran "flutter run",
21         // or simply save your changes to "hot reload" in a Flutter IDE).
22         // Notice that the counter didn't reset back to zero; the application
23         // is not restarted.
24         primarySwatch: Colors.blue,
25         // This makes the visual density adapt to the platform that you run
26         // the app on. For desktop platforms, the controls will be smaller and
27         // closer together (more dense) than on mobile platforms.
28         visualDensity: VisualDensity.adaptivePlatformDensity,
29       ),
30       home: MyHomePage(title: 'Empires'),
31     );
32   }
33 }
34
35 class MyHomePage extends StatefulWidget {
36   MyHomePage({Key key, this.title}) : super(key: key);
37
38   // This widget is the home page of your application. It is stateful, meaning
39   // that it has a State object (defined below) that contains fields that affect
40   // how it looks.
41
42   // This class is the configuration for the state. It holds the values (in this
43   // case the title) provided by the parent (in this case the App widget) and
44   // used by the build method of the State. Fields in a Widget subclass are
45   // always marked "final".
46
47   final String title;
48
49   @override
50   _MyHomePageState createState() => _MyHomePageState();
51 }
52
53 class _MyHomePageState extends State<MyHomePage> {
54   Future<Player> futurePlayer;
55   Future<List<Player>> allPlayers;
56
57   @override
58   void initState() {
59     super.initState();
60     futurePlayer = Player.fetchFirstPlayer();
61     allPlayers = Player.fetchAllPlayers();
62   }
63
64   void onPressPlusButton() {
65     setState(() {
66       // Probably use this to POST player name and character
67       allPlayers = Player.fetchAllPlayers();
68     });
69   }
70
71   @override
72   Widget build(BuildContext context) {
73     // This method is rerun every time setState is called, for instance as done
74     // by the _incrementCounter method above.
75     //
76     // The Flutter framework has been optimized to make rerunning build methods
77     // fast, so that you can just rebuild anything that needs updating rather
78     // than having to individually change instances of widgets.
79     return Scaffold(
80       appBar: AppBar(
81         // Here we take the value from the MyHomePage object that was created by
82         // the App.build method, and use it to set our appbar title.
83         title: Text(widget.title),
84       ),
85       body: new Container(
86         margin: const EdgeInsets.only(left: 20.0, right: 20.0),
87         child: Center(
88           child: Column(
89             mainAxisAlignment: MainAxisAlignment.center,
90             crossAxisAlignment: CrossAxisAlignment.start,
91             children: <Widget>[
92               Spacer(flex: 1),
93               Text(
94                 'Name:',
95                 style: Theme.of(context).textTheme.headline4,
96               ),
97               TextField(
98                 decoration: InputDecoration(
99                   hintText: 'Enter your (real) name',
100                 ),
101               ),
102               Spacer(flex: 1),
103               Text(
104                 'Character:',
105                 style: Theme.of(context).textTheme.headline4,
106               ),
107               TextField(
108                 decoration: InputDecoration(
109                   hintText: 'Enter your empire character name',
110                 ),
111               ),
112               Spacer(flex: 1),
113               Expanded(
114                 flex: 20,
115                 child: FutureBuilder<List<Player>>(
116                     future: allPlayers,
117                     builder: (context, snapshot) {
118                       if (snapshot.hasData) {
119                         if (snapshot.data.length == 0) {
120                           return Text('No players yet');
121                         } else {
122                           return ListView.builder(
123                               itemCount: snapshot.data.length,
124                               itemBuilder: (context, index) {
125                                 return ListTile(
126                                     title: Text(
127                                         snapshot.data[index].name.toString()));
128                               });
129                         }
130                       } else if (snapshot.hasError) {
131                         return Text("${snapshot.error}");
132                       }
133                       return CircularProgressIndicator();
134                     }),
135               )
136             ],
137           ),
138         ),
139       ),
140       floatingActionButton: FloatingActionButton(
141         onPressed: onPressPlusButton,
142         tooltip: 'Increment',
143         child: Icon(Icons.add),
144       ), // This trailing comma makes auto-formatting nicer for build methods.
145     );
146   }
147 }