Need rounded corner only for edges of inner grids. In the below image, rounded corner only for
- BBC News -> (top+bottom) right
- ABC News -> (top+bottom) left
If there are more than two columns, then second columns items should have rounded edges on both left and right
child: Container(
alignment: Alignment.bottomCenter,
padding: EdgeInsets.fromLTRB(10, 0, 10, 10),
decoration: BoxDecoration(
color: Colors.black,
borderRadius: BorderRadius.only(
topRight: const Radius.circular(8.0),
bottomRight: const Radius.circular(8.0),
),
image: DecorationImage(
image: CachedNetworkImageProvider(station.image, scale: 1.0),
colorFilter: ColorFilter.mode(
Colors.white.withOpacity(0.3), BlendMode.dstATop),
fit: BoxFit.fitWidth,
),
),
child: Text(
""
),
),
One way is to generate
BorderRadius
based on the index and the column count;ex:
Hope this will be helpful.
Happy coding!