Add table creation

This commit is contained in:
Andrew 2023-04-11 02:42:20 +07:00
parent 09c9549004
commit 4a5039cb19
19 changed files with 1132 additions and 141 deletions

View file

@ -0,0 +1,36 @@
import 'package:flutter/material.dart';
import 'package:get/get.dart';
class SettingsPanel extends StatefulWidget {
const SettingsPanel({super.key});
@override
State<StatefulWidget> createState() => _SettingsPanelState();
}
class _SettingsPanelState extends State<SettingsPanel> {
@override
void initState() {
super.initState();
}
@override
Widget build(BuildContext context) {
return SingleChildScrollView(
child: IntrinsicHeight(
child: _buildBody(),
),
);
}
Widget _buildBody() {
return Column(
children: [
Text(
'Settings',
style: Theme.of(context).textTheme.headlineSmall,
),
],
);
}
}