Files
2018-01-19 04:07:07 +05:30

19 lines
407 B
Dart

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