19 lines
436 B
Dart
19 lines
436 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class SettingsPage extends StatefulWidget {
|
|
const SettingsPage({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
State<SettingsPage> createState() => _SettingsPageState();
|
|
}
|
|
|
|
class _SettingsPageState extends State<SettingsPage> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Container(
|
|
child: Center(
|
|
child: Column(children: [const Text("Settings")]),
|
|
));
|
|
}
|
|
}
|