How can apply listview builder using the model and data as below to achieve the layout in the screenshot:
Model
class Location {
String name;
String imagePath;
String summary;
Location(this.name, this.imagePath, this.summary);
}
Data
import 'package:app_data_model/model/location.dart';
var locationData = [
Location(
'Statue of Liberty',
'assets/images/new-york-city-statue-of-liberty.jpg',
'The Statue of Liberty was France\'s gift to America. Built in 1886, it remains a famous world symbol of freedom and one of the greatest American icons. '),
Location(
'Central Park',
'assets/images/new-york-city-central-park-lake-bridge-boats.jpg',
'A walk, peddle, or carriage ride through the crisscrossing pathways of Central Park is a must-do on anyone\'s New York City itinerary. '),
Location(
'Empire State Building',
'assets/images/new-york-city-empire-state-building.jpg',
'The Empire State Building is one of New York\'s most famous landmark buildings and key tourist attractions. The 381-meter-tall, 102-storey building was the tallest in the world until the 1 World Trade Center tower rose higher, 41 years later. ')
];

