Created
December 19, 2020 15:52
-
-
Save CoderJava/3012e4ab8814ebebafc32fbd257dffb1 to your computer and use it in GitHub Desktop.
Flutter Instagram Desktop (rev 3)
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 WidgetNavigationDrawer extends StatelessWidget { | |
| @override | |
| Widget build(BuildContext context) { | |
| return Container( | |
| color: color1, | |
| width: 300, | |
| height: double.infinity, | |
| child: Column( | |
| crossAxisAlignment: CrossAxisAlignment.start, | |
| children: [ | |
| // TODO: buat fungsi widget bernama '_buildWidgetInstagramLogo' | |
| // TODO: buat fungsi widget bernama '_buildWidgetPhotoProfile' | |
| // TODO: buat widget yang menampilkan teks 'Hello Ditta' | |
| // TODO: buat widget yang menampilkan teks '@helloditta' | |
| // TODO: buat fungsi widget bernama '_buildWidgetInfoPostsFollowersFollowing' | |
| // TODO: buat fungsi widget bernama '_buildWidgetItemMenu' dan menampilkan setiap menu item | |
| // TODO: buat widget yang menampilkan garis horizontal | |
| // TODO: buat fungsi widget bernama '_buildWidgetItemMenu' yang menampilkan menu logout | |
| ], | |
| ), | |
| ); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment