Wasim K. Memon
Wasim K. Memon

Reputation: 6067

Flutter sample app not working

Today I started development in Flutter. I have completed setup and installation process. When I try to run sample app created by following steps mentioned here.

I don't know what can be problem/Issue.

But output look like this in Android Emulator.

enter image description here

Upvotes: 3

Views: 2409

Answers (1)

Günter Zöchbauer
Günter Zöchbauer

Reputation: 657348

I assume it is an issue with hardware rendering in the emulator.

See also https://github.com/flutter/flutter/issues/12112

If it actually is the problem you should be able to work around with

flutter run --enable-software-rendering -t lib/main.dart 

(-t lib/main.dart is default and optional)

Upvotes: 4

Related Questions