flutter time babey

This commit is contained in:
zoe 2022-06-16 22:30:02 +02:00
commit 98798fa14f
134 changed files with 4587 additions and 0 deletions

View 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"),
)
])
]),
);
}