shoutem/ui

Problem with button style

immikimaru opened this issue · 0 comments

Good morning

I experience some problems with Shoutem button style actually.

<Screen styleName="vertical h-center">
      <View styleName="vertical fill-parent v-center lg-gutter" style={{ backgroundColor: "#eee"}}>
       <TextInput
          placeholder={"Username or email"}
        />
         <TextInput style={{marginTop:10}}
         secureTextEntry
          placeholder={"Password"} />
        <View styleName="horizontal" style={{marginTop:10}}>
          <Button styleName="confirmation">
            <Text>REMOVE</Text>
          </Button>

          <Button styleName="confirmation">
            <Text>UPDATE</Text>
          </Button>
        </View>
       
     </View>
     </Screen>

Capture d’écran 2019-05-28 à 01 21 42

Here , the secondary color does not change the text to white:

Capture d’écran 2019-05-28 à 01 35 47

However, the <Examples /> on my page works perfectly.

Am i doing something wrong?

Thank you in advance