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