Skip to content

Instantly share code, notes, and snippets.

@shubie
Created December 6, 2018 12:22
Show Gist options
  • Save shubie/f8f605ca59c48351241112647660dbfc to your computer and use it in GitHub Desktop.
Save shubie/f8f605ca59c48351241112647660dbfc to your computer and use it in GitHub Desktop.
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