Guest User

Untitled

a guest
Oct 22nd, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. Color getBg(){
  2. // insert code to set bg color here
  3. return bgColor;
  4. }
  5.  
  6. (...)
  7.  
  8. Container(
  9. decoration: BoxDecoration(
  10. color: getBg(),
  11. ),
  12. child: Image(
  13. image: AssetImage('assets/myImgWithTransparentBg.png'),
  14. ),
  15. ),
Add Comment
Please, Sign In to add comment