Konkolyi Tibor

Results 24 comments of Konkolyi Tibor
trafficstars

Same problem with released 8.0 https://github.com/dotnet/maui/issues/18987

> If you modify this property does it work like you expect/want it to? > > > > This property was broken for some time in NET6.0 so what you...

@PureWeen Thank you for this solution. Works perfectly. Can I ask, why isn't it default in MAUI? It is very useful and works like it should in default. I pasted...

Hello, 1. Create a new MAUI project 2. Add an Entry to the bottom 3. Open an Entry and try to scroll, it is not working 4. Add this line...

I created a sample repo: [https://github.com/w3ori/MauiAppScrollviewSample](https://github.com/w3ori/MauiAppScrollviewSample) Reproduction steps: 1. Tap / Click in username entry 2. Try to scroll down to the Login button (it's not working)

> @mckaragoz does `MudComboBox` in your extensions allows to customize the input box selected item? Will MudBlazor include these extensions with official support?

> > Will MudBlazor include these extensions with official support? > > We do not plan to absorb community projects. In fact, we encourage people to create extensions and additional...

I use Localizer like this, default Culture is Hungarian. ```csharp // Culture configuration services.Configure(options => { var supportedCultures = new[] { "hu", "en-GB", "en-US" }; options .SetDefaultCulture(supportedCultures[0]) .AddSupportedCultures(supportedCultures) .AddSupportedUICultures(supportedCultures); });...

I didn't use decimals, my value is an integer. I'm not speaking about dots and commas just simple numbers with N0 format.

> Agree - it would of course be nice if this behaviour could be implemented for ints, yes. 🏆 I think it's not about decimals and ints, it's more about...