add hover to profile map demo

Signed-off-by: William Casarin <jb55@jb55.com>
This commit is contained in:
William Casarin
2024-04-24 11:00:47 -07:00
parent 7ec31d0eae
commit f12ccc69a4
4 changed files with 54 additions and 14 deletions

View File

@@ -2,7 +2,7 @@ use notedeck::account_login_view::AccountLoginView;
use notedeck::app_creation::{
generate_mobile_emulator_native_options, generate_native_options, setup_cc,
};
use notedeck::ui::{Preview, PreviewApp, ProfilePreview, RelayView, ProfilePic};
use notedeck::ui::{Preview, PreviewApp, ProfilePic, ProfilePreview, RelayView};
use std::env;
struct PreviewRunner {
@@ -73,5 +73,12 @@ async fn main() {
let runner = PreviewRunner::new(is_mobile);
previews!(runner, name, RelayView, AccountLoginView, ProfilePreview, ProfilePic);
previews!(
runner,
name,
RelayView,
AccountLoginView,
ProfilePreview,
ProfilePic
);
}