Skip to content

Instantly share code, notes, and snippets.

@ijoschek
Last active April 7, 2019 09:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ijoschek/249e98cd38f1a27919a3422360d23ac3 to your computer and use it in GitHub Desktop.
Save ijoschek/249e98cd38f1a27919a3422360d23ac3 to your computer and use it in GitHub Desktop.
flutter_nav_tut
import 'package:flutter/material.dart';
class ContentPage extends StatelessWidget {
ContentPage({@required this.title});
final title;
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: Column(
children: <Widget>[Text(title)],
),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment