Created
March 20, 2019 07:47
-
-
Save albertusdev/6bc206b854ad93f9fa5d711d7fa58b74 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
class CoursePage extends StatefulWidget { | |
@override | |
_CoursePageState createState() => _CoursePageState(); | |
} | |
class _CoursePageState extends State<CoursePage> { | |
@override | |
Widget build(BuildContext context) { | |
return Container(color: const Color(0xFFFFE306)); | |
} | |
}a |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment