How to bypass artboard?
I want to move my button bottom the screen a little
I use bottomNavigationBar but my button it high from bottom screen
bottomNavigationBar: Row(
children: [
Expanded(
child: GestureDetector(
child: SizedBox(
width: 190,
height: 190,
child: FlareActor(
'assets/Plus_Animation_Button.flr',
animation: 'Stay',
controller: _Animation_Plus,
sizeFromArtboard: false,
fit: BoxFit.cover,
),
),
onTap: _CheckPlus(),
),
),
Expanded(
flex: 1,
child: Padding(padding: EdgeInsets.all(2)),
),
Expanded(
child: GestureDetector(
child: SizedBox(
width: 190,
height: 190,
child: FlareActor(
'assets/Minus_Animation_Button.flr',
animation: 'Stay',
controller: _Animation_Minus,
sizeFromArtboard: false,
fit: BoxFit.cover,
),
),
onTap: _CheckMinus(),
),
),
],
),
I'm not good at english Thank you so much!