Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ListView.builder(
- shrinkWrap: true,
- itemCount: 4,
- itemBuilder: (context, index) {
- return Container(
- margin: EdgeInsets.only(bottom: AppSpacing.marginS.bottom),
- child: Card(
- color: grey,
- child: ListTile(
- contentPadding: EdgeInsets.symmetric(
- horizontal: AppSpacing.paddingS.horizontal,
- vertical: AppSpacing.paddingXS.vertical),
- leading: Image.asset(
- "assets/png/Hadith.png", // Replace with actual URL
- fit: BoxFit.cover,
- ),
- title: Text(
- "Taiba Al Diyafah",
- style: TextStyle(
- fontWeight: FontWeight.w700,
- fontSize: 12,
- color: textColorPrimary),
- ),
- subtitle: Text("Lorem ipsum dolor sit",
- style: TextStyle(
- fontWeight: FontWeight.w400,
- fontSize: 12,
- color: textColorPrimary)),
- trailing: const Icon(Icons.arrow_forward_ios,
- color: Colors.green),
- onTap: () {
- Navigator.pushNamed(
- context,
- RouteNames.discoverDetailsPage,
- arguments: {'title': "Ihram"},
- );
- },
- ),
- ),
- );
- },
- ),
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement