19 lines
451 B
Dart
19 lines
451 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:wetter/components/settings_form.dart';
|
|
|
|
class Settings extends StatelessWidget {
|
|
const Settings({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
title: const Text('Settings'),
|
|
),
|
|
body: const Padding(
|
|
padding: EdgeInsets.all(20),
|
|
child: Center(child: SettingsForm()),
|
|
));
|
|
}
|
|
}
|