· 5 years ago · May 10, 2020, 06:34 PM
1 Expanded(
2 flex: 1,
3 child:Padding(
4 padding:const EdgeInsets.only(top: 8, bottom: 5, left: 15, right:8),
5 child: PlacesAutocompleteField(
6 controller: _locationNameController,
7 apiKey: 'API KEY',
8 leading: Icon(Icons.search, color: Colors.black),
9 hint: "Enter Location",
10 mode: Mode.overlay,
11 )
12 ),
13 ),