Skip to content

Commit

Permalink
Merge branch 'master' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
M-i-k-e-l committed Sep 7, 2022
2 parents d6a4e78 + 76fa3a5 commit f97fc0b
Show file tree
Hide file tree
Showing 72 changed files with 1,167 additions and 984 deletions.
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/bug-report.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ Fill in your RNUILib and React Native versions below.
List other libraries if relevant.
-->

- React Native:
- React Native UI Lib:
- React Native version:
- React Native UI Lib version:

### Affected platforms

Expand Down
23 changes: 12 additions & 11 deletions demo/src/demoApp.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,39 +42,40 @@ function getDefaultNavigationStyle() {
statusBar: {
visible: true,
style: 'light',
backgroundColor: Colors.primary // for Android
backgroundColor: Colors.$backgroundPrimaryHeavy // for Android
},
layout: {
backgroundColor: Colors.white,
orientation: ['portrait', 'landscape']
backgroundColor: Colors.$backgroundDefault,
orientation: ['portrait', 'landscape'],
componentBackgroundColor: Colors.$backgroundDefault
},
topBar: {
visible: true,
noBorder: true, // for iOS
elevation: 0, // for Android
background: {
color: Colors.primary
color: Colors.$backgroundPrimaryHeavy
},
title: {
color: Colors.white,
color: Colors.$textDefaultLight,
fontSize: Typography.text60H.fontSize,
fontFamily: Typography.text65H.fontFamily
},
subtitle: {
color: Colors.white,
color: Colors.$textDefaultLight,
fontSize: Typography.text80T.fontSize,
fontFamily: Typography.text80.fontFamily
},
backButton: {
// visible: true,
color: Colors.white,
color: Colors.$iconDefaultLight,
showTitle: Constants.isIOS ? false : undefined,
testID: 'pop'
},
leftButtonColor: Colors.white,
leftButtonDisabledColor: Colors.rgba(Colors.white, 0.6),
rightButtonColor: Colors.white,
rightButtonDisabledColor: Colors.rgba(Colors.white, 0.6)
leftButtonColor: Colors.$iconDefaultLight,
leftButtonDisabledColor: Colors.$iconDisabled,
rightButtonColor: Colors.$iconDefaultLight,
rightButtonDisabledColor: Colors.$iconDisabled
}
};
}
Expand Down
3 changes: 0 additions & 3 deletions demo/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -227,9 +227,6 @@ module.exports = {
get PanViewScreen() {
return require('./screens/incubatorScreens/PanViewScreen').default;
},
get TransitionViewScreen() {
return require('./screens/incubatorScreens/TransitionViewScreen').default;
},
// realExamples
get AppleMusic() {
return require('./screens/realExamples/AppleMusic').default;
Expand Down
Loading

0 comments on commit f97fc0b

Please sign in to comment.