説明文など微調整
This commit is contained in:
@@ -90,13 +90,18 @@ export const WidgetSettings = ({ navigate }) => {
|
||||
margin: 10,
|
||||
}}
|
||||
>
|
||||
<WidgetPreview
|
||||
renderWidget={() => (
|
||||
<TraInfoEXWidget time={time} delayString={delayString} />
|
||||
)}
|
||||
width={400}
|
||||
height={250}
|
||||
/>
|
||||
{Object.keys(nameToWidget).map((Name) => {
|
||||
const Data = nameToWidget[Name];
|
||||
return (
|
||||
<WidgetPreview
|
||||
renderWidget={() => (
|
||||
<Data time={time} delayString={delayString} />
|
||||
)}
|
||||
width={400}
|
||||
height={250}
|
||||
/>
|
||||
);
|
||||
})}
|
||||
</View>
|
||||
</View>
|
||||
<ListItem key={"default"}>
|
||||
@@ -152,6 +157,15 @@ export const WidgetSettings = ({ navigate }) => {
|
||||
</ListItem>
|
||||
))}
|
||||
</ScrollView>
|
||||
<Text
|
||||
style={{
|
||||
backgroundColor: "white",
|
||||
borderWidth: 1,
|
||||
borderStyle: "solid",
|
||||
}}
|
||||
>
|
||||
ホーム画面に追加したウィジェットをリストアップします。現状は数を表示するだけですが、ここに各種設定を追加していく予定です。
|
||||
</Text>
|
||||
</View>
|
||||
);
|
||||
};
|
||||
|
Reference in New Issue
Block a user