Flutter AutoComplete not showing all suggestions - flutter

im using intellij idea for flutter,
before when i want to use colors or any kind of style in flutter i used to only type any word and a suggestion would pop up with correct suggestions , check the image below plz,
i used to type - white - or any color and auto complete suggestion pop up with Colors.white or when i want to change font size i only type (si) and a suggestion window pop up with fontSize,
just recently since 2 days, its not working any more, when i type white, it wont show quick suggestions anymore
white
strange thing is it's working on other places like when i type (cen) it shows correct suggestions (check image below plz) :
center
i have the latest version of intellij idea

Related

how do I debug the formatting of a flutter app?

The background to my problem is that I have an AppBar, and no matter what I try, I can't seem to change the text colour from black.
So, coming from a webdev background, I want to reach for the devconsole, click on the offending element and see the cascading styles that resulted in the text being black.
My question is, what is the Flutter equivalent of this debugging process?

How to make a cup/bowl like shape in flutter?

I am currently using the package curved_navigation_bar: ^0.4.0-nullsafety.0 to display a navigation bar in my flutter project.
currently the default shape of selected icon looks like this
I want something that looks like this
when I go into the source code I see some mathematical formulas which I tried tweaking but am not getting a similar result. can someone help me? a container or widget of this exact shape will also help me. thanks

Changing the icon "type" to "rounded" in Flutter

I would like to know if there is a way to change the icon "type" in Flutter, not quite sure whats it called but i noticed that Flutter's material icon have different types, for examples:
Icons.done, Icons.done_rounded, Icons.done_sharp
So in this case the type is "rounded" and "sharp", and if i'm not mistaken using Icons.done will have a default type of "sharp".
So i was wondering if we can change the default icon type to "rounded", like changing the default icon size using theme data.
Well currently one of the ways is adding the additional _rounded to every icon in my Flutter project, but i'm a very lazy person you see. :) Anyone can help?
No, there is no default option to set your icons to 'rounded' they are different svg images and have a different name. It is not a setting like icon size.
Check out https://material.io/resources/icons/?style=baseline for the full Icons list.
There are also a lot of 3rd party icon libs on pub.dev. I use https://pub.dev/packages/mdi a lot.

Unity Text Component can't show all the text, how can this happened?

I use Unity to create a game and use Text to show some message,but there was a bug not appear every time, that is, the Text only show some of the context, and I set the horizontal overflow as wrap, the bellow picture is the bug:
the good one, the text show "下注倒计时:"
the bug one, the text show "下 :","注倒计时" these three words just disapeared!
and the bug only appeared on android.
I think the problem is on the setting of the text... please see the image below. :)
check this image some of the text is not visible. the image below show the text completely..
check the best fit so that. the text will fit the width and height... check the image below... hopefully this help. :D
This can be a font issue, Do you get this issue with the normal English font.
Are you using Unity UI or NGUI or any other plugin?

Firepad's color button does not change color of the text

I am using the userlist.html given in github. However the color drop down does not change the color of the text. Everything else works as expected. I also do not get any error in the console.
PS: I am using codemirror with firepad.
Any help is appreciated :)
The problem was because of the codemirror mode which was set to Javascript. Hence it was trying to use javascript's coloring scheme.