fix(android): make button default text not all caps for improved consistency (#10854)

This commit is contained in:
Nathan Walker
2025-09-16 08:41:17 -07:00
committed by GitHub
parent eef1503027
commit d6d3800884
2 changed files with 7 additions and 5 deletions

View File

@ -75,6 +75,8 @@ export class Button extends ButtonBase {
public initNativeView(): void {
super.initNativeView();
const nativeView = this.nativeViewProtected;
// make consistent with iOS, easier on users given css styling
nativeView.setAllCaps(false);
initializeClickListener();
const clickListener = new ClickListener(this);
nativeView.setOnClickListener(clickListener);