Compare commits
4 Commits
bug/159-to
...
enhancemen
| Author | SHA1 | Date | |
|---|---|---|---|
| 5da12939cb | |||
| 0d20b5847f | |||
| 973e327232 | |||
| 0f79495775 |
14
README.md
14
README.md
@@ -1,7 +1,15 @@
|
|||||||
# Game Tracker
|
# Game Tracker
|
||||||
|
|
||||||

|

|
||||||

|
|
||||||

|

|
||||||
|

|
||||||
|

|
||||||
|
|
||||||
|
### Versions Supported
|
||||||
|
|
||||||
|

|
||||||
|

|
||||||
|

|
||||||
|
|
||||||
A all-in-one app to track card- and board games, manage players and groups and get statistics about your played games.
|
A all-in-one app to track card- and board games, manage players and groups and get statistics about your played games.
|
||||||
|
|||||||
@@ -181,7 +181,6 @@ class _PlayerSelectionState extends State<PlayerSelection> {
|
|||||||
icon: Icons.info,
|
icon: Icons.info,
|
||||||
title: loc.info,
|
title: loc.info,
|
||||||
message: _getInfoText(context),
|
message: _getInfoText(context),
|
||||||
fullscreen: false,
|
|
||||||
),
|
),
|
||||||
child: ListView.builder(
|
child: ListView.builder(
|
||||||
itemCount: suggestedPlayers.length,
|
itemCount: suggestedPlayers.length,
|
||||||
|
|||||||
@@ -10,7 +10,6 @@ class TopCenteredMessage extends StatelessWidget {
|
|||||||
required this.icon,
|
required this.icon,
|
||||||
required this.title,
|
required this.title,
|
||||||
required this.message,
|
required this.message,
|
||||||
this.fullscreen = true,
|
|
||||||
});
|
});
|
||||||
|
|
||||||
/// The icon to display above the title.
|
/// The icon to display above the title.
|
||||||
@@ -22,18 +21,13 @@ class TopCenteredMessage extends StatelessWidget {
|
|||||||
/// The message text to display below the title.
|
/// The message text to display below the title.
|
||||||
final String message;
|
final String message;
|
||||||
|
|
||||||
final bool fullscreen;
|
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return Container(
|
return Container(
|
||||||
padding: fullscreen ? const EdgeInsets.only(top: 100) : null,
|
padding: const EdgeInsets.only(top: 100),
|
||||||
margin: const EdgeInsets.symmetric(horizontal: 10),
|
margin: const EdgeInsets.symmetric(horizontal: 10),
|
||||||
alignment: Alignment.topCenter,
|
alignment: Alignment.topCenter,
|
||||||
child: Column(
|
child: Column(
|
||||||
mainAxisAlignment: fullscreen
|
|
||||||
? MainAxisAlignment.start
|
|
||||||
: MainAxisAlignment.center,
|
|
||||||
children: [
|
children: [
|
||||||
Icon(icon, size: 45),
|
Icon(icon, size: 45),
|
||||||
const SizedBox(height: 10),
|
const SizedBox(height: 10),
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
name: game_tracker
|
name: game_tracker
|
||||||
description: "Game Tracking App for Card Games"
|
description: "Game Tracking App for Card Games"
|
||||||
publish_to: 'none'
|
publish_to: 'none'
|
||||||
version: 0.0.5+144
|
version: 0.0.5+143
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ^3.8.1
|
sdk: ^3.8.1
|
||||||
|
|||||||
Reference in New Issue
Block a user