Skip to content

Commit aab4af4

Browse files
committed
Merge branch 'master' into feat/WheelPicker
2 parents ee039da + bf4cb28 commit aab4af4

File tree

131 files changed

+6628
-2823
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

131 files changed

+6628
-2823
lines changed

.npmignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,7 @@ android/
232232
demo/
233233
expoDemo/
234234
uilib-docs/
235+
markdowns/
235236
.babelrc
236237
# typings/
237238
# eslint-rules/

demo/src/assets/icons/archive.png

476 Bytes
Loading
719 Bytes
Loading
682 Bytes
Loading
1.17 KB
Loading
1.38 KB
Loading

demo/src/assets/icons/delete.png

176 Bytes
Loading
263 Bytes
Loading
241 Bytes
Loading
331 Bytes
Loading
384 Bytes
Loading

demo/src/assets/icons/mail.png

362 Bytes
Loading
598 Bytes
Loading
749 Bytes
Loading
1.16 KB
Loading
1.78 KB
Loading

demo/src/index.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,9 @@ module.exports = {
5555
get ImageScreen() {
5656
return require('./screens/componentScreens/ImageScreen').default;
5757
},
58+
get ProgressiveImageScreen() {
59+
return require('./screens/componentScreens/ProgressiveImageScreen').default;
60+
},
5861
get MaskedInputScreen() {
5962
return require('./screens/componentScreens/MaskedInputScreen').default;
6063
},

demo/src/screens/ExampleScreenPresenter.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export function renderBooleanGroup(title, options) {
5959
);
6060
}
6161

62-
export function renderRadioGroup(title, key, options, {isRow} = {}) {
62+
export function renderRadioGroup(title, key, options, {isRow, afterValueChanged} = {}) {
6363
const value = this.state[key];
6464
return (
6565
<View marginB-s2>
@@ -70,7 +70,7 @@ export function renderRadioGroup(title, key, options, {isRow} = {}) {
7070
row={isRow}
7171
style={isRow && styles.rowWrap}
7272
initialValue={value}
73-
onValueChange={value => this.setState({[key]: value})}
73+
onValueChange={value => this.setState({[key]: value}, afterValueChanged)}
7474
>
7575
{_.map(options, (value, key) => {
7676
return (

demo/src/screens/MainScreen.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ class MainScreen extends Component {
5050

5151
onSearchBoxBlur = () => {
5252
this.closeSearchBox();
53-
this.filterExplorerScreens('');
53+
// this.filterExplorerScreens('');
5454
};
5555

5656
getMenuData = () => {
@@ -97,7 +97,7 @@ class MainScreen extends Component {
9797
this.closeSearchBox();
9898

9999
setTimeout(() => {
100-
this.filterExplorerScreens('');
100+
// this.filterExplorerScreens('');
101101
this.pushScreen(row);
102102
}, 0);
103103
};

demo/src/screens/MenuStructure.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,7 @@ export const navigationData = {
119119
title: 'Animations & Gestures',
120120
screens: [
121121
{title: 'Animated Image', tags: 'animated image', screen: 'unicorn.components.AnimatedImageScreen'},
122+
{title: 'ProgressiveImage', tags: 'progressive image cover overlay', screen: 'unicorn.components.ProgressiveImageScreen'},
122123
{title: 'List Animations', tags: 'animated card', screen: 'unicorn.animations.ListAnimationsScreen'},
123124
{title: 'Card Animations', tags: 'animated card', screen: 'unicorn.animations.CardAnimationsScreen'},
124125
{title: 'Card Scanner', tags: 'card scanner process', screen: 'unicorn.animations.CardScannerScreen'},

0 commit comments

Comments
 (0)