Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
"eslint": "~8.57.0",
"eslint-config-prettier": "^10.0.0",
"fork-ts-checker-webpack-plugin": "^7.0.0",
"form-data": ">=4.0.4",
"form-data": ">=4.0.4",
"gonzales": "^1.0.7",
"husky": "^9.0.0",
"jest": "30.0.5",
Expand Down Expand Up @@ -104,12 +104,12 @@
"zx": "^8.3.0",
"jest-util": "30.0.5"
},
"overrides": {
"form-data": ">=4.0.4"
},
"overrides": {
"form-data": ">=4.0.4"
},
"lint-staged": {
"**/*.{js,ts,css,scss,json,html}": [
"npx prettier --write"
]
}
}
}
2 changes: 2 additions & 0 deletions packages/core/ui/button/index.android.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down