ContactTile constructor
const
ContactTile({ - Key? key,
- RxChatContact? contact,
- RxUser? user,
- MyUser? myUser,
- List<Widget> leading = const [],
- List<Widget> trailing = const [],
- void onTap()?,
- bool selected = false,
- List<Widget> subtitle = const [],
- double darken = 0,
- double height = 80,
- AvatarRadius radius = AvatarRadius.large,
- List<ContextMenuItem>? actions,
- bool folded = false,
- bool dense = false,
- EdgeInsets? padding,
- EdgeInsets margin = const EdgeInsets.fromLTRB(0, 1.5, 0, 1.5),
- Widget avatarBuilder(
- Widget
)?,
})
Implementation
const ContactTile({
super.key,
this.contact,
this.user,
this.myUser,
this.leading = const [],
this.trailing = const [],
this.onTap,
this.selected = false,
this.subtitle = const [],
this.darken = 0,
this.height = 80,
this.radius = AvatarRadius.large,
this.actions,
this.folded = false,
this.dense = false,
this.preventContextMenu = false,
this.padding,
this.margin = const EdgeInsets.fromLTRB(0, 1.5, 0, 1.5),
Widget Function(Widget)? avatarBuilder,
this.enableContextMenu = true,
}) : avatarBuilder = avatarBuilder ?? _defaultAvatarBuilder;