14 lines
369 B
Dart
14 lines
369 B
Dart
|
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 */);
|
||
|
}
|
||
|
}
|