implement identity button as navigation entry primary icon

This commit is contained in:
yggverse 2024-12-11 05:44:59 +02:00
parent a5415fa4e5
commit 5348417a73
6 changed files with 66 additions and 105 deletions

View file

@ -25,8 +25,17 @@ impl Request {
}
// Actions
pub fn update(&self, progress_fraction: Option<f64>) {
self.widget.update(progress_fraction);
pub fn update(
&self,
progress_fraction: Option<f64>,
is_identity_applicable: bool,
is_identity_active: bool,
) {
self.widget.update(
progress_fraction,
is_identity_applicable,
is_identity_active,
);
}
pub fn clean(