Advertisement
muhaiminurabir

image picture flutter

Apr 13th, 2025
273
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 0.68 KB | None | 0 0
  1.               Card(
  2.                 shape: RoundedRectangleBorder(
  3.                     borderRadius: BorderRadius.circular(10)),
  4.                 clipBehavior: Clip.hardEdge,
  5.                 elevation: 2,
  6.                 child: Container(
  7.                   height: 150,
  8.                   decoration: BoxDecoration(
  9.                     color: Colors.white,
  10.                     image: DecorationImage(
  11.                       image: AssetImage("assets/png/kibla2.png"),
  12.                       fit: BoxFit.fill,
  13.                     ),
  14.                   ),
  15.                   alignment: Alignment.center,
  16.                   padding: AppSpacing.paddingS,
  17.                 ),
  18.               ),
  19.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement