From d5f1554949321f2ebfda89efe39b0477a6ff2e55 Mon Sep 17 00:00:00 2001 From: Joe Carstairs Date: Sun, 8 Feb 2026 15:15:24 +0000 Subject: task-085: transactions view has transactions --- schist_desktop_gui/src/gui/components.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'schist_desktop_gui/src/gui/components.rs') diff --git a/schist_desktop_gui/src/gui/components.rs b/schist_desktop_gui/src/gui/components.rs index bb5590f..606c418 100644 --- a/schist_desktop_gui/src/gui/components.rs +++ b/schist_desktop_gui/src/gui/components.rs @@ -1,3 +1,4 @@ +mod account_navigation_entry; pub mod balances_view; pub mod bucket_navigation_entry; pub mod buckets_view; @@ -7,6 +8,7 @@ pub mod panel; pub mod text; pub mod transactions_view; +pub use account_navigation_entry::AccountNavigationEntry; pub use balances_view::BalancesView; pub use bucket_navigation_entry::BucketNavigationEntry; pub use buckets_view::BucketsView; -- cgit v1.2.3 From 97b413aa5962bded37dedb380034fa7b97bdc06c Mon Sep 17 00:00:00 2001 From: Joe Carstairs Date: Sun, 8 Feb 2026 20:26:30 +0000 Subject: task-085: display transaction data in tables --- schist_desktop_gui/src/gui/components.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'schist_desktop_gui/src/gui/components.rs') diff --git a/schist_desktop_gui/src/gui/components.rs b/schist_desktop_gui/src/gui/components.rs index 606c418..ec91951 100644 --- a/schist_desktop_gui/src/gui/components.rs +++ b/schist_desktop_gui/src/gui/components.rs @@ -5,6 +5,7 @@ pub mod buckets_view; pub mod button; pub mod navigation; pub mod panel; +pub mod table; pub mod text; pub mod transactions_view; @@ -15,5 +16,6 @@ pub use buckets_view::BucketsView; pub use button::{button, panel_button}; pub use navigation::Navigation; pub use panel::Panel; +pub use table::Table; pub use text::Text; pub use transactions_view::TransactionsView; -- cgit v1.2.3 From 413afad1fdf1d15fefc1b709f2eba1332a110608 Mon Sep 17 00:00:00 2001 From: Joe Carstairs Date: Thu, 12 Feb 2026 20:00:26 +0000 Subject: task-085: uses new iced::widget::Table instead of home-made widget --- schist_desktop_gui/src/gui/components.rs | 2 -- 1 file changed, 2 deletions(-) (limited to 'schist_desktop_gui/src/gui/components.rs') diff --git a/schist_desktop_gui/src/gui/components.rs b/schist_desktop_gui/src/gui/components.rs index ec91951..606c418 100644 --- a/schist_desktop_gui/src/gui/components.rs +++ b/schist_desktop_gui/src/gui/components.rs @@ -5,7 +5,6 @@ pub mod buckets_view; pub mod button; pub mod navigation; pub mod panel; -pub mod table; pub mod text; pub mod transactions_view; @@ -16,6 +15,5 @@ pub use buckets_view::BucketsView; pub use button::{button, panel_button}; pub use navigation::Navigation; pub use panel::Panel; -pub use table::Table; pub use text::Text; pub use transactions_view::TransactionsView; -- cgit v1.2.3