Skip to content

Instantly share code, notes, and snippets.

@paulallies
Last active April 24, 2020 07:38
Show Gist options
  • Save paulallies/b36582f7afae83fa4189de5e7975bd93 to your computer and use it in GitHub Desktop.
Save paulallies/b36582f7afae83fa4189de5e7975bd93 to your computer and use it in GitHub Desktop.
A nav screen
import 'package:flutter/material.dart';
class Screen extends StatelessWidget {
String title;
Screen({this.title});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: Text(title)),
body: Center(
child: Text(title),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment