From 6d1515e3f73bcb6b89bed053e1243db45a576429 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Malo=20L=C3=A9on?= Date: Wed, 22 Feb 2023 11:24:30 +0100 Subject: [PATCH] feat(ui_components): add top navigation bar component to theme data --- .../lib/src/features/component_theme_data.dart | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/wyatt_ui_components/lib/src/features/component_theme_data.dart b/packages/wyatt_ui_components/lib/src/features/component_theme_data.dart index c083545a..1f58e87c 100644 --- a/packages/wyatt_ui_components/lib/src/features/component_theme_data.dart +++ b/packages/wyatt_ui_components/lib/src/features/component_theme_data.dart @@ -19,6 +19,7 @@ import 'package:wyatt_ui_components/src/domain/entities/entities.dart'; class ComponentThemeData { const ComponentThemeData.raw({ this.appBar, + this.topNavigationBarComponent, this.bottomNavigationBar, this.errorWidget, this.loadingWidget, @@ -35,7 +36,10 @@ class ComponentThemeData { this.skillCardComponent, }); final AppBarComponent? appBar; + + final TopNavigationBarComponent? topNavigationBarComponent; final BottomNavigationBarComponent? bottomNavigationBar; + final ErrorWidgetComponent? errorWidget; final LoadingWidgetComponent? loadingWidget; final LoaderComponent? loaderComponent;