Prepared for dialog implementation

This commit is contained in:
Felix Kirchner
2025-04-30 17:59:21 +02:00
parent 6402fff7d4
commit c8113430f1
4 changed files with 20 additions and 7 deletions

View File

@@ -80,7 +80,10 @@ class InformationView extends StatelessWidget {
Uri.parse('https://www.github.com/flixcoo')),
icon: const Icon(FontAwesomeIcons.github)),
],
)
),
CupertinoButton(
child: const Text('Spieldaten exportieren'),
onPressed: () => {saveJsonToDevice()})
],
),
Positioned(
@@ -112,4 +115,8 @@ class InformationView extends StatelessWidget {
],
)));
}
void saveJsonToDevice() async {
//todo: implement
}
}