Skip to content

Commit

Permalink
minor ui fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
dealnotedev committed Jul 6, 2024
1 parent af810c9 commit e0d4096
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions lib/reward_widget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,14 @@ class _State extends State<RewardWidget> {
return [
ReorderableList(
shrinkWrap: true,
proxyDecorator: (child, index, _) {
return Material(
color: const Color(0xFF424654),
elevation: 8,
borderRadius: BorderRadius.circular(4),
child: child,
);
},
itemBuilder: (context, index) {
final e = handlers[index];
return Material(
Expand Down

0 comments on commit e0d4096

Please sign in to comment.