Advertisement
Guest User

Untitled

a guest
Oct 16th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. Stack(
  2. alignment: AlignmentDirectional.centerStart,
  3. children: <Widget>[
  4. Positioned(
  5. top: 0,
  6. bottom: 0,
  7. left: 0,
  8. width: 40,
  9. child:Container(
  10. color: AppColors.darkRedColor,
  11. child: const RotatedBox(
  12. quarterTurns: -1,
  13. child: Center(child: Text('Protocol', style: AppTextStyle.label13WhiteMediumShadow)),
  14. ))),
  15. Container(
  16. child: Padding(
  17. padding: const EdgeInsets.fromLTRB(55, 6, 15, 6),
  18. child: Column(
  19. crossAxisAlignment: CrossAxisAlignment.start,
  20. children: const <Widget>[
  21. AutoSizeText('Dynamic knee extensions symmetry test adwadaw da dawd', style: AppTextStyle.label14PrimaryMediumShadow, minFontSize: 8, maxLines: 2),
  22. Padding(
  23. padding: EdgeInsets.only(top: 14, bottom: 4),
  24. child: Text('Acceleration Leg Curl/Extension', style: AppTextStyle.label13White)),
  25. Text('Ruben Neves', style: AppTextStyle.label12Grey),
  26. Padding(
  27. padding: EdgeInsets.only(top: 3),
  28. child: Text('14:30h', style: AppTextStyle.label12GreyColorItalic))
  29. ]
  30. )),
  31. ),
  32. ])
  33. ))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement