18 lines
366 B
Dart
18 lines
366 B
Dart
|
import 'package:flutter/material.dart';
|
||
|
|
||
|
class SettingsPage extends StatelessWidget {
|
||
|
const SettingsPage({super.key});
|
||
|
|
||
|
@override
|
||
|
Widget build(BuildContext context) {
|
||
|
return Scaffold(
|
||
|
appBar: AppBar(
|
||
|
title: const Text('Settings'),
|
||
|
),
|
||
|
body: const Center(
|
||
|
child: Text('Welcome to the Settings Page!'),
|
||
|
),
|
||
|
);
|
||
|
}
|
||
|
}
|