Merge remote-tracking branch 'origin/refactor/circular-deps' into feat/v9-prerelease

This commit is contained in:
Nathan Walker
2025-09-16 12:21:16 -07:00
2 changed files with 3 additions and 1 deletions

View File

@@ -73,6 +73,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);