We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1fe04b commit 82eb41eCopy full SHA for 82eb41e
lib/widgets/app.dart
@@ -81,6 +81,12 @@ class ZulipApp extends StatelessWidget {
81
@override
82
Widget build(BuildContext context) {
83
final theme = ThemeData(
84
+ appBarTheme: const AppBarTheme(
85
+ // This prevents an elevation change in [AppBar]s so they stop turning
86
+ // darker if there is something scrolled underneath it. See docs:
87
+ // https://api.flutter.dev/flutter/material/AppBar/elevation.html
88
+ scrolledUnderElevation: 0,
89
+ ),
90
// This applies Material 3's color system to produce a palette of
91
// appropriately matching and contrasting colors for use in a UI.
92
// The Zulip brand color is a starting point, but doesn't end up as
0 commit comments