linter調整

This commit is contained in:
harukin-DeskMini
2022-09-28 03:19:04 +09:00
parent 560649004c
commit 2a3fd7774d
9 changed files with 2384 additions and 1164 deletions

View File

@@ -1,16 +1,10 @@
import React from 'react';
import {Platform, StatusBar, View} from 'react-native';
import React from "react";
import { Platform, StatusBar, View } from "react-native";
export default function StatusbarDetect() {
if(Platform.OS == "ios"){
return (
<StatusBar barStyle="dark-content"/>
);
}
else if(Platform.OS == "android"){
return (
<View/>
);
}
}
if (Platform.OS == "ios") {
return <StatusBar barStyle="dark-content" />;
} else if (Platform.OS == "android") {
return <View />;
}
}