Created
December 6, 2018 12:22
-
-
Save shubie/f8f605ca59c48351241112647660dbfc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'package:beautiful_list/model/lesson.dart'; | |
| import 'package:flutter/material.dart'; | |
| class DetailPage extends StatelessWidget { | |
| final Lesson lesson; | |
| DetailPage({Key key, this.lesson}) : super(key: key); | |
| @override | |
| Widget build(BuildContext context) { | |
| return Scaffold( | |
| body: Column( | |
| children: <Widget>[topContent, bottomContent], | |
| ), | |
| ); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment