debug view && priority in listview

This commit is contained in:
2024-05-23 17:41:51 +02:00
parent 34925b6678
commit f5813a5489
12 changed files with 432 additions and 123 deletions

View File

@@ -0,0 +1,13 @@
import 'package:flutter/material.dart';
class DebugPersistencePage extends StatefulWidget {
@override
_DebugPersistencePageState createState() => _DebugPersistencePageState();
}
class _DebugPersistencePageState extends State<DebugPersistencePage> {
@override
Widget build(BuildContext context) {
return Container(/* Add your UI components here */);
}
}