mark-nicepants / figma2flutter

Converts design token json files to flutter
Apache License 2.0
17 stars 16 forks source link

account for pascal and camel case font weights #37

Closed apackin closed 1 week ago

apackin commented 1 week ago

Our designer uses PascalCase of font weights so they were getting missed by this matcher.

I considered adding something along the lines of entry.value.map(val => val.replaceAll('-','').contains(value.toLowerCase()), too, but didn't think the complexity was worth it for such a small finite set of cases.