react-native-simple-radio-button icon indicating copy to clipboard operation
react-native-simple-radio-button copied to clipboard

rtl radio

Open sam9010 opened this issue 3 years ago • 3 comments

I want to show label in left and radio in right

plz help me

sam9010 avatar May 31 '21 06:05 sam9010

Hi, @sam9010 Can you elaborate on the issue? You can set RadioButtonLabel before RadioButtonInput.

ChetanBains avatar Sep 07 '21 03:09 ChetanBains

Hi, @sam9010 Can you elaborate on the issue? You can set RadioButtonLabel before RadioButtonInput.

how ?

moGeekHex avatar Dec 18 '21 16:12 moGeekHex

my sample code: <View style={{flex:1}}> <View style={{flex:0.2}}> <Text allowFontScaling={false} style={{fontFamily:'font',}}>{strings.cancellation}</Text> </View> <View style={{flex:0.8,alignItems:'center',}}> <RadioForm style={{fontFamily:'font',}} radioStyle={{paddingRight: 20}} radio_props={this.state.radioList_cancellation} initial={this.state.radioIndex_cancellation} formHorizontal={true} labelHorizontal={false} buttonColor={strings.color_app} selectedButtonColor={this.state.color} animation={true} onPress={(value,index) => {this.setRadio_cancellation(value,index)}} /> </View></View>

and my import is:

import RadioForm from 'react-native-simple-radio-button';

sam9010 avatar Dec 19 '21 05:12 sam9010