Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
4ca0bcc
feat: 2034 - "just holes" polygon feature
monsieurtanuki Feb 26, 2025
7014cda
Merge branch 'master' into feat/2034
josxha Feb 26, 2025
df23e77
Added `Polygon.inverted` constructor
JaffaKetchup Feb 26, 2025
e477e1a
moved inverted feature to PolygonLayer
monsieurtanuki Mar 7, 2025
cb510a4
minor color change
monsieurtanuki Mar 7, 2025
8576f03
Merge branch 'master' into feat/2034
JaffaKetchup Mar 8, 2025
75a09f8
refactored coding everything about invertedFill in a preliminary step
monsieurtanuki Mar 10, 2025
55f3a98
Test `Path.combine`
JaffaKetchup Mar 10, 2025
ee84080
Updated polygons example to include more edge cases and reduce confusion
JaffaKetchup Mar 10, 2025
8806c38
introduced test variables "useEvenOdd" and "invertedHoles"
monsieurtanuki Mar 13, 2025
f2c9ba5
now filling holes
monsieurtanuki Mar 13, 2025
1ba0368
Made even/odd mode dependent on whether running on web
JaffaKetchup Mar 15, 2025
b5344fe
Delete example/ios/Flutter/ephemeral/flutter_lldb_helper.py
JaffaKetchup Mar 16, 2025
ade2c0e
Delete example/ios/Flutter/ephemeral/flutter_lldbinit
JaffaKetchup Mar 16, 2025
9ba5d02
Updated example app iOS config
JaffaKetchup Mar 16, 2025
fa471c3
Added toggle for inverted polygon fill to example app
JaffaKetchup Mar 16, 2025
c579ffd
Minor formatting fix
JaffaKetchup Mar 16, 2025
f373f7e
Make `evenOdd` dependent on `invertedFill` on non-web (for performanc…
JaffaKetchup Mar 16, 2025
5ad7bd5
Added links to online documentation where necessary
JaffaKetchup Mar 16, 2025
f9fd0c3
Minor renaming
JaffaKetchup Mar 16, 2025
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
14 changes: 7 additions & 7 deletions example/.metadata
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,20 @@
# This file should be version controlled and should not be manually edited.

version:
revision: "53c27e519d33b4e13b01a8710b38a3591d6ca6f1"
channel: "beta"
revision: "463e7516406b4ba7814703616da0e475523db54c"
channel: "master"

project_type: app

# Tracks metadata for the flutter migrate command
migration:
platforms:
- platform: root
create_revision: 53c27e519d33b4e13b01a8710b38a3591d6ca6f1
base_revision: 53c27e519d33b4e13b01a8710b38a3591d6ca6f1
- platform: windows
create_revision: 53c27e519d33b4e13b01a8710b38a3591d6ca6f1
base_revision: 53c27e519d33b4e13b01a8710b38a3591d6ca6f1
create_revision: 463e7516406b4ba7814703616da0e475523db54c
base_revision: 463e7516406b4ba7814703616da0e475523db54c
- platform: ios
create_revision: 463e7516406b4ba7814703616da0e475523db54c
base_revision: 463e7516406b4ba7814703616da0e475523db54c

# User provided section

Expand Down
2 changes: 2 additions & 0 deletions example/ios/.gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
**/dgph
*.mode1v3
*.mode2v3
*.moved-aside
Expand All @@ -18,6 +19,7 @@ Flutter/App.framework
Flutter/Flutter.framework
Flutter/Flutter.podspec
Flutter/Generated.xcconfig
Flutter/ephemeral/
Flutter/app.flx
Flutter/app.zip
Flutter/flutter_assets/
Expand Down
2 changes: 1 addition & 1 deletion example/ios/Flutter/AppFrameworkInfo.plist
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
<key>CFBundleVersion</key>
<string>1.0</string>
<key>MinimumOSVersion</key>
<string>8.0</string>
<string>12.0</string>
</dict>
</plist>
1 change: 0 additions & 1 deletion example/ios/Flutter/Debug.xcconfig
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"
#include "Generated.xcconfig"
1 change: 0 additions & 1 deletion example/ios/Flutter/Release.xcconfig
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"
#include "Generated.xcconfig"
41 changes: 0 additions & 41 deletions example/ios/Podfile

This file was deleted.

Loading