Create Appbar Components #155

Merged
hugo merged 11 commits from ui_kit-ui_components/feat/create-appbar-components into master 2023-02-22 16:48:26 +00:00
Showing only changes of commit b2fe14a123 - Show all commits

View File

@ -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;