Last active
January 13, 2021 00:59
-
-
Save jtmuller5/255c32c3a8bbeb022887f7947fcca93e 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 VideoTimeRemaining extends ViewModelWidget<StackedVideoViewModel> { | |
| @override | |
| Widget build(BuildContext context, StackedVideoViewModel model) { | |
| return Container( | |
| padding: EdgeInsets.only(bottom: 8, right: 8), | |
| height: model.thumbnailHeight, | |
| width: model.thumbnailWidth, | |
| child: Align( | |
| alignment: Alignment.bottomRight, | |
| child: Container( | |
| child: Text( | |
| model.timeRemainingString, | |
| style: TextStyle(color: Colors.white), | |
| ), | |
| ), | |
| ), | |
| ); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment