Bump deps and add new dex data

This commit is contained in:
zontreck 2025-05-28 14:01:54 -07:00
parent fa6eaae876
commit 2309942e7e
8 changed files with 152 additions and 27 deletions

View file

@ -15,6 +15,8 @@ Future<int> main(List<String> args) async {
}
class CompletedGenerator extends StatefulWidget {
const CompletedGenerator({super.key});
@override
State<StatefulWidget> createState() {
return _completedGen();
@ -29,6 +31,8 @@ class _completedGen extends State<CompletedGenerator> {
}
class MainGen extends StatefulWidget {
const MainGen({super.key});
@override
State<StatefulWidget> createState() {
return _main();
@ -42,7 +46,7 @@ class _main extends State<MainGen> {
Generation gen = Generation.One;
StringBuilder sb = StringBuilder();
int index = 0;
Generation? currentGen = null;
Generation? currentGen;
int maxTasks = 5;
int state = 0;
@ -211,12 +215,12 @@ class _main extends State<MainGen> {
style: TextStyle(fontSize: 24),
),
SizedBox(height: 50),
Text("Status: ${statusMessage}", style: TextStyle(fontSize: 24)),
Text("Status: $statusMessage", style: TextStyle(fontSize: 24)),
Text(
"Progress: ${progress * 100}%",
style: TextStyle(fontSize: 24),
),
Text("Task ${state}/${maxTasks}", style: TextStyle(fontSize: 24)),
Text("Task $state/$maxTasks", style: TextStyle(fontSize: 24)),
LinearProgressIndicator(value: progress, minHeight: 30),
],
),