Merge pull request 'upd: android input' (#44) from amalia/29-sept-25 into join

Reviewed-on: bip/mobile-darmasaba#44
This commit is contained in:
2025-09-29 17:35:24 +08:00
3 changed files with 8 additions and 2 deletions

View File

@@ -225,7 +225,7 @@ export default function DetailDiscussionGeneral() {
&& handleKomentar()
}}
style={[
Platform.OS == 'android' && Styles.mb15,
Platform.OS == 'android' && Styles.mb12,
]}
>
<MaterialIcons name="send" size={25} style={(komentar == '' || data?.status === 2 || !data?.isActive || (!memberDiscussion && (entityUser.role == "user" || entityUser.role == "coadmin"))) ? Styles.cGray : Styles.cDefault} />

View File

@@ -325,7 +325,7 @@ export default function DiscussionDetail() {
handleKomentar();
}}
style={[
Platform.OS == 'android' && Styles.mb15,
Platform.OS == 'android' && Styles.mb12,
]}
>
<MaterialIcons

View File

@@ -79,6 +79,12 @@ const Styles = StyleSheet.create({
mb10: {
marginBottom: 10
},
mb12: {
marginBottom: 12
},
mb13: {
marginBottom: 13
},
mb15: {
marginBottom: 15
},