Questions tagged [flutter-row]

37 questions
0
votes
3 answers

Flutter wrap does not as child of row

I have one Row with two children. The first is a Wrap and the second is another Row like so: Row( mainAxisAlignment: MainAxisAlignment.spaceBetweeen, children: [ Wrap(), Row(<2 or 3 children in here>) ] I expected,…
Maria PapaG
  • 175
  • 2
  • 14
0
votes
1 answer

Wrap middle element to new row if needed?

I have a navigation bar at the bottom of a multi-page form, with buttons to go back or forward, and an indicator for the current page. Right now, I have the indicator place in a Row above another Row that contains the buttons, like this: This…
Magnus
  • 17,157
  • 19
  • 104
  • 189
0
votes
1 answer

Screen not updating in a statefulWidget in Flutter

I have a statefulWidget in Flutter like this: class GameScreen extends StatefulWidget { @override GameScreenState createState() => GameScreenState(); } class GameScreenState extends State { List selectedWord = ['h', 'e',…
mrjamaisvu
  • 137
  • 9
0
votes
2 answers

Row with 2 children icon and (Expanded) text (a long one) space between them

I have a row with 2 children in a row an icon(location) and text here is sample image Row( mainAxisAlignment: MainAxisAlignment.center, crossAxisAlignment: CrossAxisAlignment.start, …
Sunny
  • 14,522
  • 15
  • 84
  • 129
0
votes
2 answers

What's the most efficient way to add spacing with a specific width to Widgets in a Row()?

I use Expanded() to tell the Widgets in my Row to use the available space. I want to have 4px space between elements in my Row. I don't want to have the same space towards elements outside of the Row. Given that Flutter doesn't support negative…
Christian
  • 25,249
  • 40
  • 134
  • 225
-2
votes
2 answers

Show counter to number of elements hidden when overflow occurs in flutter row widget

Can anyone please help to implement this feature of Gmail that shows the counter to number of emails hidden when the email list becomes large ? I want to implement this in row widget where instead of being scrollable extra elements count is shown…
-2
votes
2 answers

How To Place a Row at Bottom of the screen in flutter

I have 3 Columns i want to make non scrollable screen using those columns first 2 columns have only one one images last column have a row in which there are four icons i want to put last column which have a row icons at the bottom of the screen for…
1 2
3