mirror of
https://github.com/nisrulz/flutter-examples.git
synced 2025-06-12 01:18:49 +08:00
19 lines
407 B
Dart
19 lines
407 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class SettingsScreen extends StatelessWidget {
|
|
static const String routeName = "/settings";
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return new Scaffold(
|
|
appBar: new AppBar(
|
|
title: new Text("Settings"),
|
|
),
|
|
body: new Container(
|
|
child: new Center(
|
|
child: new Text("Settings Screen"),
|
|
)),
|
|
);
|
|
}
|
|
}
|