コード整理

This commit is contained in:
harukin-expo-dev-env
2024-05-21 10:33:41 +00:00
parent 9df3d0c62a
commit 1fafe1649c
4 changed files with 44 additions and 52 deletions

View File

@@ -4,6 +4,25 @@ import {
TextWidget,
ListWidget,
} from "react-native-android-widget";
import dayjs from "dayjs";
import { ToastAndroid } from "react-native";
export const getInfoString = async () => {
// Fetch data from the server
const time = dayjs().format("HH:mm");
const text = await fetch(
"https://script.google.com/macros/s/AKfycbz80LcaEUrhnlEsLkJy0LG2IRO3DBVQhfNmN1d_0f_HvtsujNQpxM90SrV9yKWH_JG1Ww/exec"
)
.then((response) => response.text())
.then((data) => {
if (data !== "") {
return data.split("^");
}
return null;
});
ToastAndroid.show(`${text}`, ToastAndroid.SHORT);
return { time, text };
};
export function InfoWidget({ time, text }) {
return (