mirror of
https://github.com/nisrulz/flutter-examples.git
synced 2025-06-12 17:38:40 +08:00
19 lines
403 B
Dart
19 lines
403 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class AccountScreen extends StatelessWidget {
|
|
static const 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"),
|
|
)),
|
|
);
|
|
}
|
|
}
|