Skip to content

Commit

Permalink
add comment style change
Browse files Browse the repository at this point in the history
  • Loading branch information
kidozh committed Aug 30, 2024
1 parent fd950cc commit a6e8dc1
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions lib/widget/PostWidget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -361,16 +361,16 @@ class PostState extends State<PostStatefulWidget> {
padding: EdgeInsets.symmetric(vertical: 8.0, horizontal: 4.0),
decoration: BoxDecoration(
borderRadius: BorderRadius.all(Radius.circular(8.0)),
color: Theme.of(context).colorScheme.primaryContainer.withOpacity(0.1),
// boxShadow: [
// if(isMaterial(context))
// BoxShadow(
// color: Colors.grey.withOpacity(0.5),
// spreadRadius: 5,
// blurRadius: 7,
// offset: Offset(0, 3)
// )
// ]
color: Theme.of(context).colorScheme.primaryContainer,
boxShadow: [
if(isMaterial(context))
BoxShadow(
color: Theme.of(context).colorScheme.shadow,
spreadRadius: 5,
blurRadius: 7,
offset: Offset(0, 3)
)
]
),
child: ListView.builder(
padding: EdgeInsets.zero,
Expand Down

0 comments on commit a6e8dc1

Please sign in to comment.