Figen Güngör

Results 7 comments of Figen Güngör

Thanks for looking into it. I skipped migration part for now but I'll try to create a minimal example soon and share the results with you. Device: LG G5 Android...

I checked the example and it seems to work. Can you share your code snippet?

You are welcome to do that. I have no objection.

Hi @dukaric1991 ! You need to set package field to access the assets(images) of another package as following: ``` static String getFlagImageAssetPath(String isoCode) { return "assets/${isoCode.toLowerCase()}.png"; } static Widget getDefaultFlagImage(Country...

Hi! It's related to string concatenation with + operator when posterPath is null. So you can either use String interpolation like that: ` String imageUrl = "https://image.tmdb.org/t/p/w92${snapshot.data[index].posterPath}"` or check if...

It happens with version 1.0.4, too. You can run this example(increase the flame version first) and see: https://github.com/codetricity/flame_2022_visual_novel_tutorial/ When dialog button is added after first scene in the example, you...

You can add these attributes to change the right drawable ``` android:drawableRight="@drawable/yourIconName" android:drawableEnd="@drawable/yourIconName" ```