From 87fb2655d4598a5a4760fa9a3a7744a8101b46c5 Mon Sep 17 00:00:00 2001 From: Atif Siddiqui Date: Sun, 20 Apr 2025 18:58:18 +0500 Subject: [PATCH] fix A value of type 'TabBarThemeData' can't be assigned to a variable of type 'TabBarTheme'. --- lib/src/widgets/flutter_flow_button_tabbar.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/widgets/flutter_flow_button_tabbar.dart b/lib/src/widgets/flutter_flow_button_tabbar.dart index ea3cfc6..89278c6 100644 --- a/lib/src/widgets/flutter_flow_button_tabbar.dart +++ b/lib/src/widgets/flutter_flow_button_tabbar.dart @@ -612,7 +612,7 @@ class _FlutterFlowButtonTabBarState extends State } Widget _buildStyledTab(Widget child, int index) { - final TabBarTheme tabBarTheme = TabBarTheme.of(context); + final TabBarThemeData tabBarTheme = TabBarTheme.of(context); final double animationValue; if (index == _currentIndex) {