dioxus-sortable 0.1.2

Sortable tables and components for Dioxus
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
.PHONY: all

all: example

example:
	# Dioxus CLI doesn't seem to allow for a custom config
	mv Dioxus.toml Dioxus.toml.temp || true
	cp Dioxus.prime-ministers.toml Dioxus.toml

	# Build release
	dx build --example prime_ministers --release

	# Restore config
	rm Dioxus.toml
	mv Dioxus.toml.temp Dioxus.toml || true