Henry Riehl

Results 22 comments of Henry Riehl

Before: ![Screenshot from 2022-08-13 20-33-33](https://user-images.githubusercontent.com/73116038/184508214-d9424639-555d-425d-959a-d35b82933457.png) After: ![Screenshot from 2022-08-13 20-33-04](https://user-images.githubusercontent.com/73116038/184508218-d8304c7e-1a41-4ba0-8397-8f51c73274aa.png)

Also added a maximum 15 character limit to limit overflow within the searchbar

> You should probably just have the text scroll instead of limiting the text inside of it. Wdym? Like revert back to it having an unlimited length?

@0Franky Hey! I encountered the same issue, and removing ``` gtk_widget_show(GTK_WIDGET(window)); gtk_widget_show(GTK_WIDGET(view)); ``` from my_application.cc made it all work. The only issue now is that the window doesn't have any...

@domesticmouse Hey, I don't mind looking at this, but I'm a little confused as to what the end result is meant to look like. Do you want to have padding...

Would it be possible for GTK4 to become a 3rd party dependency and be integrated within the engine statically at compile time? This way Flutter wouldn't need to rely on...

Are these curves specific to flutter apps running on Android? I find that the scrolling curve on Linux also jumps a little towards the end.

This issue is occurring because Flutter is told to draw the rectangle at an odd position value, ie: if the width of the screen is 101 pixels wide and the...

Dart has the ```ceilToDouble``` and ```floorToDouble``` functions that would fix this issue. I'll try to work on a PR that makes use of those functions for all of the alignment...

@QuncCccccc Added a test, PTAL!