Skip to content

Commit

Permalink
working on the screen
Browse files Browse the repository at this point in the history
  • Loading branch information
simonpojok committed Nov 9, 2020
1 parent c6b99dd commit 9b346a6
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions lib/screens/home/components/houses.dart
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,32 @@ class _HousesState extends State<Houses> {
),
),
],
),
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Text(
'${house.bedRooms} bedrooms / ',
style: TextStyle(
fontSize: 15,
fontWeight: FontWeight.bold
),
),
Text(
'${house.bathRooms} bathrooms / ',
style: TextStyle(
fontSize: 15,
fontWeight: FontWeight.bold
),
),
Text(
'${house.sqFeet} sqFT',
style: TextStyle(
fontSize: 15,
fontWeight: FontWeight.bold
),
),
],
)
],
),
Expand Down

0 comments on commit 9b346a6

Please sign in to comment.