const
EditorialRow({ - Key? key,
- Widget? leading,
- required String title,
- String? subtitle,
- Widget? trailing,
- VoidCallback? onTap,
- EdgeInsetsGeometry padding = const EdgeInsets.symmetric(vertical: 14, horizontal: 4),
- bool showDivider = true,
- bool dense = false,
})
Implementation
const EditorialRow({
super.key,
this.leading,
required this.title,
this.subtitle,
this.trailing,
this.onTap,
this.padding = const EdgeInsets.symmetric(vertical: 14, horizontal: 4),
this.showDivider = true,
this.dense = false,
});