Unverified Commit 8959caa2 authored by Shi-Hao Hong's avatar Shi-Hao Hong Committed by GitHub

Update scrimDrawerColor with proper const format (#31938)

parent cfc35725
...@@ -110,9 +110,9 @@ void main() { ...@@ -110,9 +110,9 @@ void main() {
testWidgets('Drawer scrimDrawerColor test', (WidgetTester tester) async { testWidgets('Drawer scrimDrawerColor test', (WidgetTester tester) async {
await tester.pumpWidget( await tester.pumpWidget(
MaterialApp( const MaterialApp(
home: Scaffold( home: Scaffold(
drawerScrimColor: const Color(0xFF323232), drawerScrimColor: Color(0xFF323232),
drawer: Drawer(), drawer: Drawer(),
), ),
), ),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment