File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -2,11 +2,11 @@ import { ios } from "../utils/utils";
2
2
3
3
const majorVersion = ios . MajorVersion ;
4
4
5
- export const activityIndicatorViewStyle = ( ) => { return majorVersion <= 12 ? UIActivityIndicatorViewStyle . Gray : UIActivityIndicatorViewStyle . Medium } ;
5
+ export const activityIndicatorViewStyle = ( ) => majorVersion <= 12 ? UIActivityIndicatorViewStyle . Gray : UIActivityIndicatorViewStyle . Medium ;
6
6
7
7
// UI Element Colors
8
- export const backgroundColor = ( ) => { return majorVersion <= 12 ? UIColor . whiteColor : UIColor . systemBackgroundColor } ;
9
- export const labelColor = ( ) => { return majorVersion <= 12 ? UIColor . blackColor : UIColor . labelColor } ;
8
+ export const backgroundColor = ( ) => majorVersion <= 12 ? UIColor . whiteColor : UIColor . systemBackgroundColor ;
9
+ export const labelColor = ( ) => majorVersion <= 12 ? UIColor . blackColor : UIColor . labelColor ;
10
10
11
11
// Standard Colors
12
- export const blueColor = ( ) => { return majorVersion <= 12 ? UIColor . blueColor : UIColor . systemBlueColor } ;
12
+ export const blueColor = ( ) => majorVersion <= 12 ? UIColor . blueColor : UIColor . systemBlueColor ;
You can’t perform that action at this time.
0 commit comments