diff --git a/package.json b/package.json index ccc97c5e6..4f3b29040 100644 --- a/package.json +++ b/package.json @@ -113,4 +113,4 @@ "npx prettier --write" ] } -} +} \ No newline at end of file diff --git a/packages/core/ui/button/index.android.ts b/packages/core/ui/button/index.android.ts index 16e294b65..76d0b5f0d 100644 --- a/packages/core/ui/button/index.android.ts +++ b/packages/core/ui/button/index.android.ts @@ -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);