Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
7bf992c
docs: add MVP demo frames
rhseung Jun 6, 2026
58376bf
docs(flutter): expand MVP frame coverage
rhseung Jun 6, 2026
5d62d51
fix(flutter): constrain MVP group tabs panel
rhseung Jun 6, 2026
417ba1a
fix(flutter): restore notice reaction chips
rhseung Jun 6, 2026
62e534e
fix(flutter): make profile frame scrollable
rhseung Jun 6, 2026
8cee5c8
fix(flutter): lift Potg MVP floating button
rhseung Jun 6, 2026
eedb6d0
fix(flutter): make Potg create time frame visible
rhseung Jun 6, 2026
7a28f27
fix(flutter): polish MVP presentation frames
rhseung Jun 6, 2026
d904bde
fix(flutter): stretch MVP phone header
rhseung Jun 6, 2026
7fa39cc
fix(flutter): polish MVP presentation details
rhseung Jun 6, 2026
bb32c28
fix(flutter): add icons to notice action chips
rhseung Jun 6, 2026
24ad7d8
fix: remove component shadows
rhseung Jun 6, 2026
2fe0a16
fix(flutter): keep taxi pot card border visible
rhseung Jun 7, 2026
a6a1d53
fix(flutter): reduce MVP frame text scale
rhseung Jun 7, 2026
eba6d2b
fix(flutter): balance profile card padding
rhseung Jun 7, 2026
03b2f3b
fix(flutter): raise taxi pot card text hierarchy
rhseung Jun 7, 2026
eeb490c
fix: restore floating button shadow
rhseung Jun 7, 2026
0beb35f
fix(flutter): adjust empty description rhythm
rhseung Jun 7, 2026
5ad7973
fix(flutter): raise dialog body text level
rhseung Jun 7, 2026
d1a7c20
fix(flutter): make Potg create time frame render reliably
rhseung Jun 7, 2026
12e66f2
fix(flutter): refine MVP frame hierarchy
rhseung Jun 7, 2026
e65d07a
fix(flutter): restore Potg create time widgetbook entry
rhseung Jun 7, 2026
334c2e5
fix(flutter): use theme onSurface as HugeIcon fallback color
rhseung Jun 7, 2026
e4fffa9
feat(flutter): add iOS MVP frame demo app
rhseung Jun 8, 2026
050ee7a
fix(flutter): render MVP frames cleanly on simulator
rhseung Jun 8, 2026
ca43b65
fix(flutter): reduce bottom navigation safe area gap
rhseung Jun 8, 2026
ba6452a
fix(flutter): refine Potg create time frame
rhseung Jun 8, 2026
45925a5
feat(flutter): add Ziggle notice list MVP frame
rhseung Jun 8, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions packages/flutter/example/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@ pubspec.lock

.metadata

# Generated platform directories — run `flutter create .` to regenerate locally
# Generated platform directories. iOS is committed for simulator demos.
android/
ios/
linux/
macos/
web/
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
34 changes: 34 additions & 0 deletions packages/flutter/example/ios/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
**/dgph
*.mode1v3
*.mode2v3
*.moved-aside
*.pbxuser
*.perspectivev3
**/*sync/
.sconsign.dblite
.tags*
**/.vagrant/
**/DerivedData/
Icon?
**/Pods/
**/.symlinks/
profile
xcuserdata
**/.generated/
Flutter/App.framework
Flutter/Flutter.framework
Flutter/Flutter.podspec
Flutter/Generated.xcconfig
Flutter/ephemeral/
Flutter/app.flx
Flutter/app.zip
Flutter/flutter_assets/
Flutter/flutter_export_environment.sh
ServiceDefinitions.json
Runner/GeneratedPluginRegistrant.*

# Exceptions to above rules.
!default.mode1v3
!default.mode2v3
!default.pbxuser
!default.perspectivev3
24 changes: 24 additions & 0 deletions packages/flutter/example/ios/Flutter/AppFrameworkInfo.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
<string>App</string>
<key>CFBundleIdentifier</key>
<string>io.flutter.flutter.app</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>App</string>
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1.0</string>
</dict>
</plist>
1 change: 1 addition & 0 deletions packages/flutter/example/ios/Flutter/Debug.xcconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#include "Generated.xcconfig"
1 change: 1 addition & 0 deletions packages/flutter/example/ios/Flutter/Release.xcconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#include "Generated.xcconfig"
Loading
Loading