Top "Flutter" questions

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

Flutter - FloatingActionButton in the center

Is it possible to make the FloatingActionButton in the centre instead of the right side? import 'package:flutter/material.dart'; …

dart flutter floating-action-button center-align
How to fix "unexpected element <queries> found in <manifest>" error?

All of a sudden, I am getting this build error in my Android project: unexpected element <queries> found …

android flutter android-gradle-plugin android-manifest manifest
How to underline text in flutter

How to underline text in flutter inside Text widget? I cannot seem to find underline inside fontStyle property of TextStyle

flutter
How to get .apk and .ipa file from flutter?

I am new to flutter programming and I've created a demo app, its running fine on both android and iOS …

flutter apk ipa flutter-ios
Flutter Network Image does not fit in Circular Avatar

I am trying to retrieve bunch of images from an api. I want the images to be displayed in Circular …

image dart flutter flutter-layout
Flutter: how to prevent device orientation changes and force portrait?

I would like to prevent my application from changing its orientation and force the layout to stick to "portrait". In …

flutter
How to center the title of an appbar

I'm trying to center the title text in an app bar that has both a leading and trailing actions. @override …

flutter
Flutter SVG rendering

I tried adding an image with a SVG source to my flutter application. new AssetImage("assets/images/candle.svg")) But …

dart flutter
How to upload images and file to a server in Flutter?

I use a web service for image processing , it works well in Postman: Now I want to make http request …

flutter dart file-upload httprequest
How to add a new pair to Map in Dart?

I caught the following errors when adding a new pair to a Map. Variables must be declared using the keywords …

flutter dart key-pair fluttermap