1
0
mirror of https://github.com/nisrulz/flutter-examples.git synced 2025-11-08 12:39:17 +00:00
Files
flutter-examples/navigation_drawer/lib/screens/settings.dart
2018-01-19 04:00:59 +05:30

19 lines
401 B
Dart

import 'package:flutter/material.dart';
class SettingsScreen extends StatelessWidget {
static 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"),
)),
);
}
}