This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This app doesn't collect any user data and it doesn't require internet while using the app. This is just a utility app for board games. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/foundation.dart'; | |
import 'package:flutter/material.dart'; | |
void main() { | |
runApp(MyApp( | |
items: List<String>.generate(100, (i) => "List item $i"), | |
)); | |
} | |
Future<String> _asyncInputDialog(BuildContext context) async { |