Skip to content

Commit

Permalink
fix(Android): 修复安卓5.0涟漪溢出的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
smallpath committed Dec 3, 2017
1 parent 65a5798 commit d41dbb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion psnine/bootstrap/import.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class IOSActivityIndicator extends Component<any, any> {
let TouchableComponent

if (!isIOS) {
TouchableComponent = Platform.Version <= 20 ? ExtendedTouchableOpacity : TouchableNativeFeedback
TouchableComponent = Platform.Version <= 22 ? ExtendedTouchableOpacity : TouchableNativeFeedback
} else {
TouchableComponent = ExtendedTouchableOpacity
}
Expand Down

0 comments on commit d41dbb6

Please sign in to comment.