mirror of
https://github.com/nisrulz/flutter-examples.git
synced 2025-06-17 13:03:30 +08:00
updated: navigation_drawer example with code refactoring
This commit is contained in:
18
navigation_drawer/lib/screens/account.dart
Normal file
18
navigation_drawer/lib/screens/account.dart
Normal file
@ -0,0 +1,18 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
class AccountScreen extends StatelessWidget {
|
||||
static String routeName = "/account";
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return new Scaffold(
|
||||
appBar: new AppBar(
|
||||
title: new Text("Account"),
|
||||
),
|
||||
body: new Container(
|
||||
child: new Center(
|
||||
child: new Text("Account Screen"),
|
||||
)),
|
||||
);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user