SimpleCloudNotifier/flutter/lib/pages/debug/debug_persistence.dart

14 lines
369 B
Dart
Raw Normal View History

2024-05-23 17:41:51 +02:00
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 */);
}
}