skip to Main Content

Open photos in Flutter

In my Flutter app I'm showing some images, currently when I click on them I can download them but I wanted to change that, so that when I click on the image it opens, does anyone know how I can…

VIEW QUESTION

Flutter / Builder shouldn't return null

I have an issue in my builder causing the following error juste after the builder in my match_page.dart : "The body might complete normally, causing 'null' to be returned, but the return type, 'Widget', is a potentially non-nullable type. Try…

VIEW QUESTION

Size of text in Flutter

I need the texts to always be the same size regardless of the device settings. I have tried using these codes but without success: in the Widget Text: fontSize: 20 * MediaQuery.textScaleFactorOf(context) fontSize: 20 * MediaQuery.of(context).textScaleFactor textScaleFactor or: MediaQueryData =…

VIEW QUESTION
Back To Top
Search