Guest User

Untitled

a guest
Apr 1st, 2021
20
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. Stack(
  2. children: [
  3. for (int i = 0; i < 6; i++)
  4. Positioned(
  5. left: 24.0 * i,
  6. child: Container(
  7. height: 32.0,
  8. width: 32.0,
  9. decoration: BoxDecoration(
  10. color: Colors.yellow,
  11. borderRadius: BorderRadius.circular(22.0),
  12. border: Border.all(color: Colors.black)))),
  13. ],
  14. ));
Advertisement
Add Comment
Please, Sign In to add comment