Closed bidur0123 closed 1 year ago
Hey there! I've analyzed the changes made in the pull request and here's the report for you:
water_drop_effect.dart
lib/Screens
WaterDropEffect
drawercontroller.dart
Water Drop Effect
menuscreen.dart
I have a few suggestions to improve the code:
const WaterDropEffect({super.key});
const WaterDropEffect({Key? key}) : super(key: key);
const
Scaffold
Column(
Spacer
const BoxDecoration(
BoxShape.circle,
Container
I have pushed updated code please merge my code
Reviewed and merged. thanks for contributing. ✨
Pull Request Report
Hey there! I've analyzed the changes made in the pull request and here's the report for you:
Changes
water_drop_effect.dart
file in thelib/Screens
directory.WaterDropEffect
class indrawercontroller.dart
file.Water Drop Effect
menu item inmenuscreen.dart
file.Suggestions
I have a few suggestions to improve the code:
water_drop_effect.dart
:const WaterDropEffect({super.key});
, it should beconst WaterDropEffect({Key? key}) : super(key: key);
.const
keyword beforeScaffold
to make it a constant widget.Column(
for better readability.Spacer
widget.const BoxDecoration(
, it should beconst BoxDecoration(
.BoxShape.circle,
for better readability.Container
widget.const BoxDecoration(
, it should beconst BoxDecoration(
.BoxShape.circle,
for better readability.Container
widget.const BoxDecoration(
, it should beconst BoxDecoration(
.BoxShape.circle,
for better readability.Container
widget.const BoxDecoration(
, it should beconst BoxDecoration(
.