1
0
mirror of https://github.com/nisrulz/flutter-examples.git synced 2025-11-08 20:50:04 +00:00

updated: navigation_drawer example with code refactoring

This commit is contained in:
Nishant Srivastava
2018-01-19 04:00:59 +05:30
parent 698ac566ff
commit f257e0898d
5 changed files with 120 additions and 46 deletions

View File

@@ -0,0 +1,18 @@
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"),
)),
);
}
}