feat: ffmpeg image loader

This commit is contained in:
2024-10-22 23:03:49 +01:00
parent d21a45c941
commit c62fbfe510
30 changed files with 331 additions and 925 deletions

View File

@ -37,10 +37,7 @@ impl NostrWidget for Header {
ui.with_layout(Layout::right_to_left(Align::Center), |ui| {
if let Some(pk) = services.login {
ui.add(Avatar::pubkey(pk, services));
} else if Button::new()
.show(ui, |ui| {
ui.label("Login")
}).clicked() {
} else if Button::new().show(ui, |ui| ui.label("Login")).clicked() {
services.navigate(Routes::LoginPage);
}
});