12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- import React from 'react';
-
- import i18n from "i18n-js";
- import C from 'rn-class'
- C.addColor("#03cf5d", "color-naver");
- C.addColor("#6280ba", "color-agreeBtn");
- C.addColor("#c87320" , "color-not_agreeBtn");
-
- export default (props)=>{
- // 다국어 처리 영역
- let {termsTitle, termsContents, agree , not_agree} = i18n.t("AcceptTerms");
- let {close} = i18n.t("TermsPopup");
-
- return (
- <C.SafeAreaView cls="po-full jc-c ai-c">
- <C.View cls="flx0.8 w80% ai-c sdof_0_5 sdo2 bc-color-gray-light-v3 el2 pa2">
- <C.Text cls="f4 fw-b">{termsTitle[0]}</C.Text>
- <C.EL.Divider cls="ma1 w100%"/>
- <C.View cls="flx1 jc-sa">
- <C.ScrollView>
- <C.Text>
- {termsContents}
- {termsContents}
- {termsContents}
- {termsContents}
- {termsContents}
- {termsContents}
- {termsContents}
- {termsContents}
- {termsContents}
- {termsContents}
- {termsContents}
- {termsContents}{termsContents}
- {termsContents}
- {termsContents}
- {termsContents}
- {termsContents}
- {termsContents}
- {termsContents}
- {termsContents}
- {termsContents}
- {termsContents}
- {termsContents}
- {termsContents}{termsContents}
- {termsContents}
- {termsContents}
- {termsContents}
- {termsContents}
- {termsContents}
- {termsContents}
- {termsContents}
- {termsContents}
- {termsContents}
- {termsContents}
- {termsContents}
- </C.Text>
- </C.ScrollView>
- <C.EL.Button ccls="mt1" btncls="bgc-color-agreeBtn" title={close}/>
- </C.View>
- </C.View>
- </C.SafeAreaView>
- )
- }
|