fix(ui_components): add loader to theme data (close #152)

This commit is contained in:
Malo Léon 2023-02-21 19:03:28 +01:00 committed by Hugo Pointcheval
parent e87a36dba6
commit ad4b258f52
Signed by: hugo
GPG Key ID: 3AAC487E131E00BC

View File

@ -22,6 +22,7 @@ class ComponentThemeData {
this.bottomNavigationBar, this.bottomNavigationBar,
this.errorWidget, this.errorWidget,
this.loadingWidget, this.loadingWidget,
this.loaderComponent,
this.richTextBuilderComponent, this.richTextBuilderComponent,
this.textInputComponent, this.textInputComponent,
this.fileSelectionButtonComponent, this.fileSelectionButtonComponent,
@ -37,6 +38,7 @@ class ComponentThemeData {
final BottomNavigationBarComponent? bottomNavigationBar; final BottomNavigationBarComponent? bottomNavigationBar;
final ErrorWidgetComponent? errorWidget; final ErrorWidgetComponent? errorWidget;
final LoadingWidgetComponent? loadingWidget; final LoadingWidgetComponent? loadingWidget;
final LoaderComponent? loaderComponent;
final RichTextBuilderComponent? richTextBuilderComponent; final RichTextBuilderComponent? richTextBuilderComponent;
final TextInputComponent? textInputComponent; final TextInputComponent? textInputComponent;