mirror of
https://github.com/nisrulz/flutter-examples.git
synced 2025-07-06 10:47:44 +08:00
19 lines
379 B
Dart
19 lines
379 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class AccountScreen extends StatelessWidget {
|
|
static const String routeName = "/account";
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
title: Text("Account"),
|
|
),
|
|
body: Container(
|
|
child: Center(
|
|
child: Text("Account Screen"),
|
|
)),
|
|
);
|
|
}
|
|
}
|