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
|
||||
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

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

|
||||

|
||||

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