Vice
Vice
Hey, my workaround was to use [@svgr/rollup](https://www.npmjs.com/package/@svgr/rollup) `vite.config.js` ````jsx import svgr from "@svgr/rollup"; ... export default defineConfig({ ... plugins: [ svgr({ dimensions: false, svgo: false, typescript: true }), ... ],...
Under the hood vite-plugin-svgr use "@svgr/core", "@rollup/pluginutils" all this come from the [react-svgr team](https://react-svgr.com/) So please use directly their rollup plugin described here: https://react-svgr.com/docs/rollup/ To make no difference between vite-plugin-svgr...
#### I can confirm I am working on my own DataGrid with CollectionViews (no infinite scroll only pagination). And I can give you some point of view. My main ViewModel...
Hey guys, I don't know, how could we up this one? Actually a lot of people need to get rid of third-party popups libraries And deleting a specific page is...
Hey, When two ```PopModalAsync()``` are called simultaneously the app can freeze. Even if I ```await``` them using a boolean to prevent two calls to overlap. ```` if (_isBusy) return; _isBusy...
Hello @gmakwana , sorry for the delay. I didn't implemented this feature yet. I will try to take a look on week-end only. But you can help and provide an...
Two functionalities have just been push. | Property | Description | |----------------|------------------------------------------------------------------------------------| | AudioFocus | Specifies if the video player should take the audio focus or not. | | Mute...
Hello @MasterEmit I was very busy and did not see that coming Yeah it should be possible! Did you managed it by your self? We should replace the [Entry Control](https://docs.microsoft.com/en-us/xamarin/xamarin-forms/user-interface/text/entry)...
@SarthakGz for this workaround, It works! ```csharp Text="{Binding Source={RelativeSource AncestorType={x:Type vm:SignInViewModel}}, Path=Email, Mode=TwoWay}"/> ``` Maybe this one needs attention, Is it the correct default behavior? PS: I know that I...
Hello, Could we have a guideline about the future intended behavior of BindingContext? - using ``` Source={RelativeSource AncestorType={x:Type ...}} ``` is making useless the ``` x:Datatype ``` autocompletion Does it...