36 lines
706 B
Dart
36 lines
706 B
Dart
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,
|
|
),
|
|
],
|
|
);
|
|
}
|
|
}
|