소스 검색

Fix lint issue found after use flutter 3.3.2

xuty 3 년 전
부모
커밋
9761c7eef5
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      example/lib/src/platform_menu.dart

+ 1 - 1
example/lib/src/platform_menu.dart

@@ -143,7 +143,7 @@ class _AppPlatformMenuState extends State<AppPlatformMenu> {
           ],
         ),
       ],
-      body: widget.child,
+      child: widget.child,
     );
   }
 }