some styling and loading stuff on load
This commit is contained in:
parent
429ffe7c75
commit
ceae866d97
3 changed files with 32 additions and 25 deletions
|
@ -260,9 +260,8 @@ class GitHubAdapter extends ChangeNotifier {
|
|||
await storage.setItem('activeRosterFilePath', _activeRosterFilePath);
|
||||
}
|
||||
|
||||
Future<void> load() async {
|
||||
await storage.ready;
|
||||
|
||||
load() {
|
||||
storage.ready.then((_) {
|
||||
String lastSync = storage.getItem('lastSync');
|
||||
if (lastSync != null) {
|
||||
_lastSync = DateTime.parse(lastSync);
|
||||
|
@ -276,5 +275,7 @@ class GitHubAdapter extends ChangeNotifier {
|
|||
_rosters.add(WarbandRoster.fromJson(warband));
|
||||
});
|
||||
}
|
||||
notifyListeners();
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
|
@ -110,9 +110,9 @@ class HenchmenGroup extends Unit {
|
|||
|
||||
var matches = matchList.first;
|
||||
|
||||
h['name'] = matches.group(1);
|
||||
h['name'] = matches.group(1).trim();
|
||||
h['number'] = matches.group(2);
|
||||
h['type'] = matches.group(3);
|
||||
h['type'] = matches.group(3).trim();
|
||||
h['experience'] = matches.group(4);
|
||||
|
||||
return h;
|
||||
|
@ -207,8 +207,8 @@ class Hero extends Unit {
|
|||
|
||||
var matches = matchList.first;
|
||||
|
||||
h['name'] = matches.group(1);
|
||||
h['type'] = matches.group(2);
|
||||
h['name'] = matches.group(1).trim();
|
||||
h['type'] = matches.group(2).trim();
|
||||
h['experience'] = matches.group(3);
|
||||
|
||||
return h;
|
||||
|
|
|
@ -64,13 +64,16 @@ class WarbandRosterScreen extends StatelessWidget {
|
|||
for (var hero in github.activeRoster.heros)
|
||||
ListTile(
|
||||
title: Padding(
|
||||
padding: const EdgeInsets.only(bottom: 7),
|
||||
padding: const EdgeInsets.only(bottom: 5),
|
||||
child: Row(children: <Widget>[
|
||||
Text(hero.name,
|
||||
Padding(
|
||||
padding: const EdgeInsets.only(right: 5),
|
||||
child: Text(hero.name,
|
||||
style: TextStyle(
|
||||
fontWeight: hero.rules.contains('Leader')
|
||||
? FontWeight.bold
|
||||
: FontWeight.normal)),
|
||||
),
|
||||
Text(
|
||||
'(' + hero.type + ')',
|
||||
style: TextStyle(fontSize: 10),
|
||||
|
@ -104,7 +107,10 @@ class WarbandRosterScreen extends StatelessWidget {
|
|||
title: Padding(
|
||||
padding: const EdgeInsets.only(bottom: 7),
|
||||
child: Row(children: <Widget>[
|
||||
Text(henchmenGroup.name),
|
||||
Padding(
|
||||
padding: const EdgeInsets.only(right: 5),
|
||||
child: Text(henchmenGroup.name),
|
||||
),
|
||||
Text(
|
||||
'(' + henchmenGroup.type + ')',
|
||||
style: TextStyle(fontSize: 10),
|
||||
|
|
Loading…
Reference in a new issue