fun large profile grid preview

Signed-off-by: William Casarin <jb55@jb55.com>
This commit is contained in:
William Casarin
2024-04-23 20:43:30 -07:00
parent e8168b0004
commit 7ec31d0eae
4 changed files with 65 additions and 5 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};
use notedeck::ui::{Preview, PreviewApp, ProfilePreview, RelayView, ProfilePic};
use std::env;
struct PreviewRunner {
@@ -73,5 +73,5 @@ async fn main() {
let runner = PreviewRunner::new(is_mobile);
previews!(runner, name, RelayView, AccountLoginView, ProfilePreview,);
previews!(runner, name, RelayView, AccountLoginView, ProfilePreview, ProfilePic);
}