implement stateful account management view

`./preview StatefulAccountManagementView`

Signed-off-by: kernelkind <kernelkind@gmail.com>
This commit is contained in:
kernelkind
2024-09-09 18:31:05 -04:00
committed by William Casarin
parent 3a9c7607f3
commit 950a47119e
5 changed files with 166 additions and 10 deletions

View File

@@ -2,6 +2,7 @@ use notedeck::app_creation::{
generate_mobile_emulator_native_options, generate_native_options, setup_cc,
};
use notedeck::ui::account_login_view::AccountLoginView;
use notedeck::ui::stateful_account_management::StatefulAccountManagementView;
use notedeck::ui::{
AccountManagementView, AccountSelectionWidget, DesktopSidePanel, PostView, Preview, PreviewApp,
PreviewConfig, ProfilePic, ProfilePreview, RelayView,
@@ -104,5 +105,6 @@ async fn main() {
AccountSelectionWidget,
DesktopSidePanel,
PostView,
StatefulAccountManagementView,
);
}