-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Handle numbers/booleans #5
Comments
nice solution, i tried things but never thought about adding more columns, i will do it |
any update on this? |
I'd like to move this forward. Anyone has tips how to debug a flipper plugin? |
Any update? 👀 |
It would be a very nice feature. |
I created a PR for it #12 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for your awesome plugin!
One thing that I'm missing here is that not all values are stored as strings. Sometimes we store numbers or booleans, but your Flipper Plugin always assumes strings (
getString(..)
)Is there any chance you could maybe add two columns, one for number and one for boolean, and then try to read the values as number (
getNumber(..)
) or boolean (getBoolean(..)
) as well?The text was updated successfully, but these errors were encountered: