Home > Software engineering >  How can i make this "z-index" on Flutter, i try to use Stack
How can i make this "z-index" on Flutter, i try to use Stack

Time:11-04

I need to make this App-Stack

Same problem I tried so much but i cant get a result.

CodePudding user response:

try to follow the following tree

Stack [
Column ( max finit width and height ) [
 row { go back and menu buttons }
 row { with the border radius }
]
SizedBox ( fixed width and height postion to center ) [ 
 column [
 your balance text,
and the balance
]
]
  • Related