Top "Flutter" questions

Flutter is an open-source UI software development kit created by Google.

Iterating through a list to render multiple widgets in Flutter?

I have a list of strings defined like this: var list = ["one", "two", "three", "four"]; I want to render the …

flutter loops dart
flutter corner radius with transparent background

Below is my code which I expect to render a round-corner container with a transparent background. return new Container( //padding: …

dart flutter
How to set the width of a RaisedButton in Flutter?

I have seen that I can't set the width of a RaisedButton in Flutter. If I have well understood, I …

flutter flutter-layout
How to use conditional statement within child attribute of a Flutter Widget (Center Widget)

So far whenever I needed to use a conditional statement within a Widget I have done the following (Using Center …

dart flutter
Flutter- wrapping text

I want wrap text as text grows. I searched through and tried wrap with almost everything but still text stays …

dart flutter
How to implement drop down list in flutter?

I have a list of locations that i want to implement as a dropdown list in Flutter. Im pretty new …

drop-down-menu dart flutter
Dart SDK is not configured

I installed Flutter and set up Android Studio. Then I cloned an example of flutter on GitHub (https://github.com/…

android-studio dart flutter
Button Width Match Parent

I want to know that how can I set a width to match parent layout width new Container( width: 200.0, padding: …

flutter flutter-layout
How do I center text vertically and horizontally in Flutter?

I'd like to know how to center the contents a Text widget vertically and horizontally in Flutter. I only know …

user-interface text widget alignment flutter
Sizing elements to percentage of screen width/height

Is there a simple (non-LayoutBuilder) way to size an element relative to screen size (width/height)? For example: how do …

flutter