Advertisement
AnoTest

Widget_ListTile_

Feb 11th, 2021
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 0.68 KB | None | 0 0
  1. Widget ListStylise(Articles article, BuildContext context) {
  2.   return Container(
  3.     height: MediaQuery.of(context).size.height - 20,
  4.     decoration: BoxDecoration(
  5.       color: Colors.red,
  6.       boxShadow: [
  7.         BoxShadow(
  8.           color: Colors.black12,
  9.           blurRadius: 3.0,
  10.         ),
  11.       ],
  12.     ),
  13.     child: Column(
  14.       children: [
  15.         Container(
  16.           decoration: BoxDecoration(
  17.               /* image: DecorationImage(
  18.             image: (article.urlToImage == null)
  19.                 ? Image.asset("assets/icons/heart.png")
  20.                 : NetworkImage(article.urlToImage),
  21.           )*/
  22.               ),
  23.         )
  24.       ],
  25.     ),
  26.   );
  27. }
  28.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement