Hi guys, I was thinking of a nice feature to all components.
What about to make all components hide-able by razor and css internally?
Looking at code its better to <mycomponent Hide=true /> (For razor Hide) or <mycomponent Hidden=true /> ( For css hide)
Rather than @if(!hide) { <mycomponent /> } or <mycomponent class="@(hidden ? "d-none" : "")" /> }
<mycomponent Hide=true /> or <mycomponent Hidden=true /> looks cleaner rather than applying if or conditional parameter everywhere for hiding components.
Hi all,
First of all, great project. As on one of the projects I am using BlazorStrap there was a need that swam to the surface in the past week. Nothing special, just to use accordion
for some of the components. As I was missing this, this weekend I was planning to make a branch and start working on this. In the process, I hit some "roadblocks" as I am currently on OSX/Linux development environment.
I was wondering if it is possible to do any development (I think I read all the documentation on the repo) without using Windows?
Thanks for quick replay, looking forward to contribute to this in the coming period ;)