flutter time babey
This commit is contained in:
commit
98798fa14f
134 changed files with 4587 additions and 0 deletions
15
lib/pages/settings/settings.dart
Normal file
15
lib/pages/settings/settings.dart
Normal file
|
@ -0,0 +1,15 @@
|
|||
import 'package:flutter/material.dart';
|
||||
import 'package:settings_ui/settings_ui.dart';
|
||||
|
||||
Widget Settings() {
|
||||
return SafeArea(
|
||||
child: SettingsList(contentPadding: EdgeInsets.all(24), sections: [
|
||||
SettingsSection(title: Text("General"), tiles: [
|
||||
SettingsTile(
|
||||
title: Text("Language"),
|
||||
value: Text("no"),
|
||||
)
|
||||
])
|
||||
]),
|
||||
);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue