Skip to content

Instantly share code, notes, and snippets.

@agarasul
Last active July 24, 2019 09:49
Show Gist options
  • Save agarasul/43ffe1d9125e413a2e757de4c23e47e7 to your computer and use it in GitHub Desktop.
Save agarasul/43ffe1d9125e413a2e757de4c23e47e7 to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
class ListItem extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Container(
child: Row(
children: <Widget>[
Image.network("https://github.com/agarasul/SampleNewsApp/raw/master/empty_image.png"),
Text(
"Dummy title",
),
Text(
"Dummy description",
)
],
));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment