chore: Follow up imagebubble borderradius
This commit is contained in:
parent
0aaee82ec7
commit
cdc844a4c0
3 changed files with 10 additions and 2 deletions
|
|
@ -18,6 +18,7 @@ class ImageBubble extends StatelessWidget {
|
|||
final double width;
|
||||
final double height;
|
||||
final void Function()? onTap;
|
||||
final BorderRadius? borderRadius;
|
||||
|
||||
const ImageBubble(
|
||||
this.event, {
|
||||
|
|
@ -30,6 +31,7 @@ class ImageBubble extends StatelessWidget {
|
|||
this.height = 300,
|
||||
this.animated = false,
|
||||
this.onTap,
|
||||
this.borderRadius,
|
||||
super.key,
|
||||
});
|
||||
|
||||
|
|
@ -80,14 +82,16 @@ class ImageBubble extends StatelessWidget {
|
|||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final borderRadius =
|
||||
this.borderRadius ?? BorderRadius.circular(AppConfig.borderRadius);
|
||||
return Material(
|
||||
shape: RoundedRectangleBorder(
|
||||
borderRadius: BorderRadius.circular(AppConfig.borderRadius),
|
||||
borderRadius: borderRadius,
|
||||
side: BorderSide(color: Theme.of(context).dividerColor),
|
||||
),
|
||||
child: InkWell(
|
||||
onTap: () => _onTap(context),
|
||||
borderRadius: BorderRadius.circular(AppConfig.borderRadius),
|
||||
borderRadius: borderRadius,
|
||||
child: Hero(
|
||||
tag: event.eventId,
|
||||
child: ConstrainedBox(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue