Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/v0l/egui-qr
Simple QR code painter for egui
https://github.com/v0l/egui-qr
egui qrcode rust
Last synced: 11 days ago
JSON representation
Simple QR code painter for egui
- Host: GitHub
- URL: https://github.com/v0l/egui-qr
- Owner: v0l
- Created: 2025-01-11T02:37:54.000Z (22 days ago)
- Default Branch: main
- Last Pushed: 2025-01-20T11:59:58.000Z (13 days ago)
- Last Synced: 2025-01-20T12:06:55.608Z (13 days ago)
- Topics: egui, qrcode, rust
- Language: Rust
- Homepage:
- Size: 41 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# egui-qr
Simple egui painter that renders QR Codes
## Example
```rust
QrCodeWidget::from_data(b"https://google.com")?
.ui(ui);
```