-
Notifications
You must be signed in to change notification settings - Fork 489
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
Feature: TextField
Input validation
#2101
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Well, looks like it's ready to merge, huh? |
Yh, now I think its ready! |
i get eror for use inputfilter
flet version
code
|
You need to have the latest prerelease. pip install flet --pre An official release is still to come. |
zrr1999
pushed a commit
to zrr1999/flet
that referenced
this pull request
Jul 17, 2024
* add ´InputFilter´ * create textfield utils * update textfield.dart * update return type * remove `regex_string` default * add predefined InputFilters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Close #631
Props:
Example code:
Capture:
![example](https://private-user-images.githubusercontent.com/98978078/283960132-580ca23c-8326-4143-bf17-79a97184f71e.gif?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3MzkwNDk5NjcsIm5iZiI6MTczOTA0OTY2NywicGF0aCI6Ii85ODk3ODA3OC8yODM5NjAxMzItNTgwY2EyM2MtODMyNi00MTQzLWJmMTctNzlhOTcxODRmNzFlLmdpZj9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMDglMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjA4VDIxMjEwN1omWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPThlNTdhNDUyNTY1OGVkZmQwMTNlZDVhNjUwODBiMDJjZWNkZjFmYzMyZTQ2ZmNiMTg2OTkwMmM3ZDU3NTBjN2ImWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.NoAeCQxeST1696jUC8uIFTTS9-r1b_q5SXSdrlqFNuE)
(when trying to add text characters they are rejected)
Notes:
regex_string
can't be passed to dart as a raw string(using the 'r')regex_string
is stored in a variable (regexString
).. hence using string interpolation(RegExp(r"$regexString")
) for example, will cant work because the variable's name will not be interpolated (we are in raw mode).From
RegExp
docs:This is my first dart contribution, hence will strongly appreciate opinions. 😄