upd: upd version

Deskripsi:
- tampilan jika update versi terbaru atau sedang maintenance

NO Issues
This commit is contained in:
2026-02-24 15:51:29 +08:00
parent 449f6f96cc
commit 214a243e44
7 changed files with 306 additions and 16 deletions

View File

@@ -885,7 +885,87 @@ const Styles = StyleSheet.create({
borderRadius: 5,
alignItems: 'center',
gap: 10,
}
},
modalUpdateContainer: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
paddingHorizontal: 30,
overflow: 'hidden',
},
modalUpdateDecorativeCircle1: {
position: 'absolute',
width: 300,
height: 300,
borderRadius: 150,
backgroundColor: 'rgba(255, 255, 255, 0.05)',
top: -50,
right: -50,
},
modalUpdateDecorativeCircle2: {
position: 'absolute',
width: 200,
height: 200,
borderRadius: 100,
backgroundColor: 'rgba(255, 255, 255, 0.03)',
bottom: -30,
left: -30,
},
modalUpdateContent: {
width: '100%',
alignItems: 'flex-start',
zIndex: 1,
},
modalUpdateLogo: {
width: 200,
height: 100,
marginBottom: 40,
alignSelf: 'center',
},
modalUpdateTextContainer: {
marginBottom: 40,
},
modalUpdateTitle: {
fontSize: 32,
fontWeight: 'bold',
color: 'white',
marginBottom: 20,
lineHeight: 38,
},
modalUpdateDescription: {
fontSize: 16,
color: 'white',
lineHeight: 24,
},
modalUpdateButtonContainer: {
width: '100%',
alignItems: 'center',
},
modalUpdatePrimaryButton: {
width: '100%',
paddingVertical: 15,
borderRadius: 12,
alignItems: 'center',
justifyContent: 'center',
marginBottom: 15,
shadowColor: '#000',
shadowOffset: { width: 0, height: 2 },
shadowOpacity: 0.2,
shadowRadius: 4,
elevation: 3,
},
modalUpdatePrimaryButtonText: {
fontSize: 16,
fontWeight: 'bold',
},
modalUpdateSecondaryButton: {
paddingVertical: 10,
},
modalUpdateSecondaryButtonText: {
fontSize: 16,
color: 'white',
fontWeight: '500',
},
})
export default Styles;