Skip to content

Commit ba5d876

Browse files
committed
Fix deprecated indicatorColor usage in example app
1 parent 8446ee4 commit ba5d876

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

example/lib/src/app.dart

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ class App extends StatelessWidget {
1111
return MaterialApp(
1212
theme: ThemeData(
1313
primaryColor: Colors.green,
14-
indicatorColor: Colors.white,
14+
tabBarTheme: const TabBarThemeData(
15+
indicatorColor: Colors.white,
16+
),
1517
),
1618
home: DefaultTabController(
1719
length: 2,

0 commit comments

Comments
 (0)