weebs

Results 14 comments of weebs

[This might be what you're looking for](https://github.com/fsbolero/Bolero/issues/15)

For 1, check out https://docs.microsoft.com/en-us/aspnet/core/razor-components/javascript-interop?view=aspnetcore-3.0 Calling vanilla JS libraries is fairly straightforward. You include the javascript in your project, add it to the index.html, and you'll be able to call...

You can make calls into synchronous JavaScript, but you need to call those from an asynchronous context, such as a task / async computation expression. I'm not sure if it'd...

> I suppose they would be fairly simple to use I believe so, at least for non-JS frameworks. I'm not sure how things would work with some of Materialize's JS...

@cmeeren I came across a Blazor library for Bootstrap / Material you might find interesting: https://github.com/stsrki/Blazorise https://blazorise.com/docs/ As far as I can see these are standard Blazor components so you...

Hey, I'm glad someone else has had this on their mind as well! I considered a solution for something like this in the past, and I think based on the...

> I'm not sure if that's something I would even want. Is Feliz really less verbose? I see two different examples as a form of comparison, and I'm seeing that...

> Inline HTML is silly: changes to it need recompilation, which is prohibitively more expensive compared to just putting your UI pieces (small and large) into external HTML files and...

I came here to post about the same thing, it'd be really helpful to have this as an option like we do with IgnoreOperationId, at least in my case. I...