Skip to content
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

IOS: Applying class to secure TextField randomly change it's font-size #3221

Closed
konradkubiec opened this issue Dec 1, 2016 · 7 comments
Closed

Comments

@konradkubiec
Copy link

Did you verify this is a real problem by searching [Stack Overflow].

Yes. I didn't find any discussion on this topic.

Which platform(s) does your issue occur on?

iOS

Please provide the following version numbers that your issue occurs with:

  • CLI: 2.3.0
  • Cross-platform modules: 2.3.0
  "nativescript": {
    "platforms": {
      "ios": "2.1.1",
      "android": "2.1.1"
    }
  },
  • Runtime(s): (look for the "tns-android" and "tns-ios" properties in the
    package.json file of your project)
    "tns-ios": {
      "version": "2.3.0"
    },
    "tns-android": {
      "version": "2.3.0"
    }

Please tell us how to recreate the issue in as much detail as possible.

First, you need a secured TextField with some text. Add CSS class (or by [class.className]="condition", or by changing className in component code) to this TextField or it's parents. Font-size will unexpectedly change. You can prevent some of the changes by adding font-size in new-assigned CSS class definition. When you remove the class, font-size will change to some unexpected size. When you change TextField text, font-size changes again...

Is there code involved? If so, please share the minimal amount of code needed to recreate the problem.

XML:

<StackLayout>
  <Switch class="switch" [(ngModel)]="pinFlag"></Switch>
  <TextField #pin class="input-rounded"

      [class.incorrect]="pinFlag"

      hint="Provide 6 digits PIN"
      keyboardType="number" secure="true"
      [(ngModel)]="pin" (ngModelChange)="onPinChange($event)"></TextField>
</StackLayout>

CSS:

.input-rounded{ font-size: 20; }
.incorrect {
    color: #f00;
    font-size: 20;
}

Use Switch and TextField text changes to see how font-size changes.

PS. Is there any method to remove this up-down move in iOS secure TextField content, that happens when a character changes to * or when you add a new character to ****** ?

@NickIliev
Copy link
Contributor

Hello @konradkubiec

I have tested your case but was not able to reproduce it at my side.
However, I've noticed that your versions of runtimes and modules are not the latest stable which of this moment is 2.4.0. Can you try to update your NativeScript CLI and your package.json , remove the platforms folder and rebuild your application.

If you are still hitting the issue afterward, perhaps you can send us a sample project that reproduces this behaviour.

@konradkubiec
Copy link
Author

I've updated NativeScript CLI and rebuilt platforms.

I see a difference in app styling but there is the same bug with TextField. I'll prepare a repo tomorrow with a sample app so it will be easier to replicate my situation.

@konradkubiec
Copy link
Author

@konradkubiec
Copy link
Author

@NickIliev Did you have time to take a look at my demo?

@NickIliev
Copy link
Contributor

NickIliev commented Dec 5, 2016

@konradkubiec I am on it - will write back when I have more information

Update: can confirm that I am reproducing this behavior at my side - logging this as a bug.

@NickIliev NickIliev added the bug label Dec 5, 2016
@NickIliev
Copy link
Contributor

NickIliev commented Dec 5, 2016

Code to reproduce here

  • enter some value in the TextFiled (it should have secure="true" set)
  • use the switch to change the CSS style for the TextField
    result: the font-size is changed and the real font-size is applied back only when the user starts typing in again.

@lock
Copy link

lock bot commented Aug 28, 2019

This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.

@lock lock bot locked and limited conversation to collaborators Aug 28, 2019
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

4 participants