Guest User

Untitled

a guest
Dec 6th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. final levelIndicator = Container(
  2. child: Container(
  3. child: LinearProgressIndicator(
  4. backgroundColor: Color.fromRGBO(209, 224, 224, 0.2),
  5. value: lesson.indicatorValue,
  6. valueColor: AlwaysStoppedAnimation(Colors.green)),
  7. ),
  8. );
  9.  
  10. final coursePrice = Container(
  11. padding: const EdgeInsets.all(7.0),
  12. decoration: new BoxDecoration(
  13. border: new Border.all(color: Colors.white),
  14. borderRadius: BorderRadius.circular(5.0)),
  15. child: new Text(
  16. // "\$20",
  17. "\$" + lesson.price.toString(),
  18. style: TextStyle(color: Colors.white),
  19. ),
  20. );
Add Comment
Please, Sign In to add comment