15 lines
374 B
Dart
15 lines
374 B
Dart
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"),
|
|
)
|
|
])
|
|
]),
|
|
);
|
|
}
|