react-native-material-ui icon indicating copy to clipboard operation
react-native-material-ui copied to clipboard

Radio button occupies too much space

Open nausharipov opened this issue 7 years ago • 1 comments

The code:

        <View
          style={{
            flex: 1,
            flexDirection: "row",
            justifyContent: "center",
            alignItems: "stretch"
          }}
        >
          <RadioButton
            theme='this'
            label="Unchecked"
            checked={this.state.checked}
            value="Value"
            onSelect={() => {}}
            onCheck={checked => this.setState({ checked })}
          />
          <RadioButton
            label="Unchecked"
            checked={this.state.checked}
            value="Value"
            onSelect={() => {}}
            onCheck={checked => this.setState({ checked })}
          />
        </View>

And here's how it looks like: whatsapp image 2018-11-02 at 11 40 52

How to change the amount of space the radio buttons occupy?

nausharipov avatar Nov 02 '18 05:11 nausharipov

possibly related to #443

ghostsquad avatar Dec 31 '19 17:12 ghostsquad