Drocha Blazor Components is a set of UI components and other useful extensions for Blazor applications. All components are free to use. This project is experimental.
The main goal of this project is to provide components to be used in my personal projects and to tests new ideas. You are free to fork it or to use it as it is.
These are some of the components I expect to implement in the next couple months
- Popover (partial implemented)
- Tooltip
- Teleport (like the teleport in vuejs)
- Dialog
- Mention Textarea
I provided two test projects DrBlazor.TestServerApp
(not implemented yet) and DrBlazor.TestWasmApp
. You can cd
into these folders and run the command:
cd DrBlazor.TestWasmApp
dotnet watch run
Link DrBlazor
as a reference to your project, and add the following line to the head
tag of wwwroot/index.html
in case of a wasm project.
<link href="_content/DrBlazor/style.css" rel="stylesheet" />
and add the DrBlazor
configuration as a singleton or scoped dependency.
builder.Services.AddSingleton<DrConfig>();