Add favorites search and enriched places UI
Build and deploy Flutter Web / build (push) Successful in 2m41s

This commit is contained in:
Ruslan Bakiev
2026-06-12 21:09:15 +07:00
parent 8aa2a43cc7
commit 318126d83a
58 changed files with 11222 additions and 238 deletions
+11 -1
View File
@@ -28,7 +28,11 @@ class MapflowWidgetbook extends StatelessWidget {
builder: (_) => Center(
child: SizedBox(
height: 172,
child: PlacePhotoCard(place: _samplePlace, onTap: () {}),
child: PlacePhotoCard(
place: _samplePlace,
onTap: () {},
onFavoriteToggle: () {},
),
),
),
),
@@ -78,4 +82,10 @@ const _samplePlace = PlaceRecommendation(
traits: {PlaceTrait.calm, PlaceTrait.clean},
googlePrimaryType: 'cafe',
googleTypes: ['cafe'],
googleBusinessStatus: 'OPERATIONAL',
googleRating: 4.8,
googleUserRatingCount: 128,
googleRegularOpeningHours: null,
googleCurrentOpeningHours: null,
isFavorite: true,
);