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

14 lines
334 B
Dart
Raw Normal View History

2024-05-25 18:09:39 +02:00
import 'package:flutter/material.dart';
class DebugLogsPage extends StatefulWidget {
@override
_DebugLogsPageState createState() => _DebugLogsPageState();
}
class _DebugLogsPageState extends State<DebugLogsPage> {
@override
Widget build(BuildContext context) {
return Container(/* Add your UI components here */);
}
}