2026-01-31 15:23:18 +05:30
|
|
|
name: figma
|
|
|
|
|
description: A Flutter event app
|
|
|
|
|
publish_to: 'none'
|
feat: rebuild desktop UI to match Figma + website, hero slider improvements
- Desktop sidebar (262px, blue gradient, white pill nav), topbar (search + bell + avatar), responsive shell rewritten
- Desktop homepage: immersive hero with Ken Burns animation, pill category chips, date badge cards matching mvnew.eventifyplus.com/home
- Desktop calendar: 60/40 two-column layout with white background
- Desktop profile: full-width banner + 3-column event grids
- Desktop learn more: hero image + about/venue columns + gallery strip
- Desktop settings/contribute: polished to match design system
- Mobile hero slider: RepaintBoundary, animated dots with 44px tap targets, 5s auto-scroll, 8s post-swipe delay, shimmer loading, dynamic event type badge, human-readable dates
- Guest access: requiresAuth false on read endpoints
- Location fix: show place names instead of lat/lng coordinates
- Version 1.6.1+17
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-21 13:28:19 +05:30
|
|
|
version: 1.6.1+17
|
2026-01-31 15:23:18 +05:30
|
|
|
|
|
|
|
|
environment:
|
|
|
|
|
sdk: ">=2.17.0 <3.0.0"
|
|
|
|
|
|
|
|
|
|
dependencies:
|
|
|
|
|
flutter:
|
|
|
|
|
sdk: flutter
|
|
|
|
|
cupertino_icons: ^1.0.2
|
|
|
|
|
shared_preferences: ^2.0.15
|
|
|
|
|
image_picker: ^0.8.4+3
|
|
|
|
|
table_calendar: ^3.2.0
|
|
|
|
|
geolocator: ^9.0.2
|
|
|
|
|
geocoding: ^2.0.5
|
2026-03-11 20:13:13 +05:30
|
|
|
flutter_svg: ^2.0.9
|
|
|
|
|
google_maps_flutter: ^2.5.0
|
|
|
|
|
url_launcher: ^6.2.1
|
|
|
|
|
share_plus: ^7.2.1
|
feat: Phase 3 — 26 medium-priority gaps implemented
P3-A/K Profile: Eventify ID glassmorphic badge (tap-to-copy), DiceBear
Notionists avatar via TierAvatarRing, district picker (14 pills)
with 183-day cooldown lock, multipart photo upload to server
P3-B Home: Top Events converted to PageView scroll-snap
(viewportFraction 0.9 + PageScrollPhysics)
P3-C Event detail: contributor widget (tier ring + name + navigation),
related events horizontal row; added getEventsByCategory() to
EventsService; added contributorId/Name/Tier fields to EventModel
P3-D Kerala pincodes: 463-entry JSON (all 14 districts), registered as
asset, async-loaded in SearchScreen replacing hardcoded 32 cities
P3-E Checkout: promo code field + Apply/Remove button in Step 2,
discountAmount subtracted from total, applyPromo()/resetPromo()
methods in CheckoutProvider
P3-F/G Gamification: reward cycle countdown + EP→RP progress bar (blue→
amber) in contribute + profile screens; TierAvatarRing in podium
and all leaderboard rows; GlassCard current-user stats card at
top of leaderboard tab
P3-H New ContributorProfileScreen: tier ring, stats, submission grid
with status chips; getDashboardForUser() in GamificationService;
wired from leaderboard row taps
P3-I Achievements: 11 default badges (up from 6), 6 new icon map
entries; progress % labels already confirmed present
P3-J Reviews: CustomPainter circular arc rating ring (amber, 84px)
replaces large rating number in ReviewSummary
P3-L Share rank card: RepaintBoundary → PNG capture → Share.shareXFiles;
share button wired in profile header and leaderboard tab
P3-M SafeArea audit: home bottom nav, contribute/achievements scroll
padding, profile CustomScrollView top inset
New files: tier_avatar_ring.dart, glass_card.dart,
eventify_bottom_sheet.dart, contributor_profile_screen.dart,
share_rank_card.dart, assets/data/kerala_pincodes.json
New dep: path_provider ^2.1.0
2026-04-04 17:17:36 +05:30
|
|
|
path_provider: ^2.1.0
|
release: bump version to 1.4(p) (versionCode 14)
- Update versionCode 12 → 14, versionName 1.3(p) → 1.4(p)
- Update pubspec.yaml version to 1.4.0+14
- Add CHANGELOG.md with full version history
- Update README.md: version badge + changelog section
- Desktop Contribute Dashboard rebuilt to match web version
- Contributor Dashboard title, 3-tab nav (Contribute/Leaderboard/Achievements)
- Two-column submit form, tier milestone progress bar
- Desktop leaderboard with podium, filters, rank table (green points)
- Desktop achievements 3-column badge grid
- Inline Reward Shop with RP balance
- Gamification feature module (EP, RP, leaderboard, achievements, shop)
- Profile screen redesigned to match web app layout with animations
- Home screen bottom sheet date filter chips
- Updated API endpoints, login/event detail screens, theme colors
- Added Gilroy font suite, responsive layout improvements
2026-03-18 11:10:56 +05:30
|
|
|
provider: ^6.1.2
|
2026-03-14 08:59:15 +05:30
|
|
|
video_player: ^2.8.1
|
release: bump version to 1.4(p) (versionCode 14)
- Update versionCode 12 → 14, versionName 1.3(p) → 1.4(p)
- Update pubspec.yaml version to 1.4.0+14
- Add CHANGELOG.md with full version history
- Update README.md: version badge + changelog section
- Desktop Contribute Dashboard rebuilt to match web version
- Contributor Dashboard title, 3-tab nav (Contribute/Leaderboard/Achievements)
- Two-column submit form, tier milestone progress bar
- Desktop leaderboard with podium, filters, rank table (green points)
- Desktop achievements 3-column badge grid
- Inline Reward Shop with RP balance
- Gamification feature module (EP, RP, leaderboard, achievements, shop)
- Profile screen redesigned to match web app layout with animations
- Home screen bottom sheet date filter chips
- Updated API endpoints, login/event detail screens, theme colors
- Added Gilroy font suite, responsive layout improvements
2026-03-18 11:10:56 +05:30
|
|
|
cached_network_image: ^3.3.1
|
feat: Phase 1 critical gaps — gamification API, Razorpay checkout, Google OAuth, notifications
- Fix gamification endpoints to use Node.js server (app.eventifyplus.com)
- Replace 6 mock gamification methods with real API calls (dashboard, leaderboard, shop, redeem, submit)
- Add booking models, service, payment service (Razorpay), checkout provider
- Add 3-step CheckoutScreen with Razorpay native modal integration
- Add Google OAuth login (Flutter + Django backend)
- Add full notifications system (Django model + 3 endpoints + Flutter UI)
- Register CheckoutProvider, NotificationProvider in main.dart MultiProvider
- Wire notification bell in HomeScreen app bar
- Add razorpay_flutter ^1.3.7 and google_sign_in ^6.2.2 packages
2026-04-04 15:46:53 +05:30
|
|
|
razorpay_flutter: ^1.3.7
|
|
|
|
|
google_sign_in: ^6.2.2
|
|
|
|
|
http: ^1.2.0
|
2026-04-04 16:51:30 +05:30
|
|
|
shimmer: ^3.0.0
|
2026-04-04 17:38:39 +05:30
|
|
|
flutter_staggered_animations: ^1.1.1
|
2026-01-31 15:23:18 +05:30
|
|
|
|
|
|
|
|
dev_dependencies:
|
|
|
|
|
flutter_test:
|
|
|
|
|
sdk: flutter
|
|
|
|
|
flutter_launcher_icons: ^0.13.1
|
|
|
|
|
flutter_native_splash: ^2.4.1
|
|
|
|
|
|
|
|
|
|
flutter:
|
|
|
|
|
uses-material-design: true
|
|
|
|
|
assets:
|
|
|
|
|
- assets/images/
|
2026-03-11 20:13:13 +05:30
|
|
|
- assets/icon/hand_stop.svg
|
2026-03-18 16:43:40 +05:30
|
|
|
- assets/login-bg.mp4
|
feat: Phase 3 — 26 medium-priority gaps implemented
P3-A/K Profile: Eventify ID glassmorphic badge (tap-to-copy), DiceBear
Notionists avatar via TierAvatarRing, district picker (14 pills)
with 183-day cooldown lock, multipart photo upload to server
P3-B Home: Top Events converted to PageView scroll-snap
(viewportFraction 0.9 + PageScrollPhysics)
P3-C Event detail: contributor widget (tier ring + name + navigation),
related events horizontal row; added getEventsByCategory() to
EventsService; added contributorId/Name/Tier fields to EventModel
P3-D Kerala pincodes: 463-entry JSON (all 14 districts), registered as
asset, async-loaded in SearchScreen replacing hardcoded 32 cities
P3-E Checkout: promo code field + Apply/Remove button in Step 2,
discountAmount subtracted from total, applyPromo()/resetPromo()
methods in CheckoutProvider
P3-F/G Gamification: reward cycle countdown + EP→RP progress bar (blue→
amber) in contribute + profile screens; TierAvatarRing in podium
and all leaderboard rows; GlassCard current-user stats card at
top of leaderboard tab
P3-H New ContributorProfileScreen: tier ring, stats, submission grid
with status chips; getDashboardForUser() in GamificationService;
wired from leaderboard row taps
P3-I Achievements: 11 default badges (up from 6), 6 new icon map
entries; progress % labels already confirmed present
P3-J Reviews: CustomPainter circular arc rating ring (amber, 84px)
replaces large rating number in ReviewSummary
P3-L Share rank card: RepaintBoundary → PNG capture → Share.shareXFiles;
share button wired in profile header and leaderboard tab
P3-M SafeArea audit: home bottom nav, contribute/achievements scroll
padding, profile CustomScrollView top inset
New files: tier_avatar_ring.dart, glass_card.dart,
eventify_bottom_sheet.dart, contributor_profile_screen.dart,
share_rank_card.dart, assets/data/kerala_pincodes.json
New dep: path_provider ^2.1.0
2026-04-04 17:17:36 +05:30
|
|
|
- assets/data/kerala_pincodes.json
|
2026-03-14 08:59:15 +05:30
|
|
|
fonts:
|
|
|
|
|
- family: Gilroy
|
|
|
|
|
fonts:
|
|
|
|
|
- asset: assets/fonts/Gilroy-Light.ttf
|
|
|
|
|
weight: 300
|
|
|
|
|
- asset: assets/fonts/Gilroy-LightItalic.ttf
|
|
|
|
|
weight: 300
|
|
|
|
|
style: italic
|
|
|
|
|
- asset: assets/fonts/Gilroy-Regular.ttf
|
|
|
|
|
weight: 400
|
|
|
|
|
- asset: assets/fonts/Gilroy-RegularItalic.ttf
|
|
|
|
|
weight: 400
|
|
|
|
|
style: italic
|
|
|
|
|
- asset: assets/fonts/Gilroy-Medium.ttf
|
|
|
|
|
weight: 500
|
|
|
|
|
- asset: assets/fonts/Gilroy-MediumItalic.ttf
|
|
|
|
|
weight: 500
|
|
|
|
|
style: italic
|
|
|
|
|
- asset: assets/fonts/Gilroy-SemiBold.ttf
|
|
|
|
|
weight: 600
|
|
|
|
|
- asset: assets/fonts/Gilroy-SemiBoldItalic.ttf
|
|
|
|
|
weight: 600
|
|
|
|
|
style: italic
|
|
|
|
|
- asset: assets/fonts/Gilroy-Bold.ttf
|
|
|
|
|
weight: 700
|
|
|
|
|
- asset: assets/fonts/Gilroy-BoldItalic.ttf
|
|
|
|
|
weight: 700
|
|
|
|
|
style: italic
|
|
|
|
|
- asset: assets/fonts/Gilroy-ExtraBold.ttf
|
|
|
|
|
weight: 800
|
|
|
|
|
- asset: assets/fonts/Gilroy-ExtraBoldItalic.ttf
|
|
|
|
|
weight: 800
|
|
|
|
|
style: italic
|
2026-01-31 15:23:18 +05:30
|
|
|
|
|
|
|
|
|
|
|
|
|
flutter_launcher_icons:
|
|
|
|
|
android: true
|
|
|
|
|
ios: true
|
|
|
|
|
image_path: "assets/icon/app_icon.png"
|
|
|
|
|
adaptive_icon_background: "#FFFFFF"
|
|
|
|
|
min_sdk_android: 21
|
|
|
|
|
|
|
|
|
|
flutter_native_splash:
|
|
|
|
|
color: "#FFFFFF"
|
|
|
|
|
image: assets/images/splash_icon.png
|
|
|
|
|
|
|
|
|
|
android_12:
|
|
|
|
|
color: "#FFFFFF"
|
|
|
|
|
image: assets/images/splash_icon.png
|