Skip to content

Commit 16954a3

Browse files
committed
feat: Enhance feature list display in UpdateAvailableUI for better readability
1 parent e6c508b commit 16954a3

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

src/screens/Update/Update.tsx

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -109,12 +109,14 @@ export function UpdateAvailableUI() {
109109
<Regular className='mt-5 text-white opacity-80' style={{ fontSize: 11 }}>
110110
Download size may vary. Usually around 15MB.
111111
</Regular>
112-
<View className='mt-5' style={{ gap: 5 }}>
112+
<View className='mt-5' style={{ gap: 10 }}>
113113
{features.map((item, index) => (
114-
<Regular key={index} className='text-white opacity-80' style={{ fontSize: 11 }}>
115-
{' '}
116-
{item}
117-
</Regular>
114+
<View key={index} className='flex-row items-center gap-4'>
115+
<View className='size-1.5 rounded-full bg-white opacity-70' />
116+
<Regular className='pr-3 text-white opacity-80' style={{ fontSize: 11, lineHeight: 15 }}>
117+
{item}
118+
</Regular>
119+
</View>
118120
))}
119121
</View>
120122
</View>

0 commit comments

Comments
 (0)