SimpleCloudNotifier/flutter/lib/pages/settings/root.dart

18 lines
419 B
Dart
Raw Normal View History

2024-02-18 17:36:58 +01:00
import 'package:flutter/material.dart';
class SettingsRootPage extends StatefulWidget {
const SettingsRootPage({super.key, required bool isVisiblePage});
2024-02-18 17:36:58 +01:00
@override
State<SettingsRootPage> createState() => _SettingsRootPageState();
}
class _SettingsRootPageState extends State<SettingsRootPage> {
@override
Widget build(BuildContext context) {
return Center(
child: Text('Settings'),
);
}
}