Skip to content

Instantly share code, notes, and snippets.

@agarasul
Created July 19, 2019 15:02
Show Gist options
  • Save agarasul/6c8d5fabcec49875203f0c5b1325e3ec to your computer and use it in GitHub Desktop.
Save agarasul/6c8d5fabcec49875203f0c5b1325e3ec 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>[
Text(
"Dummy title",
),
Text(
"Dummy description",
)
],
));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment