React native element buttons not working after upgrade to expo sdk 26.0.0

Has anyone been facing this issue with react native element button title not appearing compltely after upgrading to expo sdk 26.0.0. I thought this might be an issue with react native elements but while I was using expo 25.0.0 it was working fine. I tried downgrading react native elements but it didn’t help and the issue continued to persist. Does anyone have a workaround besides downgrading back to 25.0.0 :confused:

Here is the link to the snack : Unnamed Snack - Snack

Here is a snippet of what the code looks like :

      <Button
        title="PLAY"
        large
        textStyle={{ fontWeight: "700" }}
        onPress={() => this.Play()}
        buttonStyle={{
          backgroundColor: "#41D3B7",
          width: SCREEN_WIDTH * 0.8,
          height: 45,
          borderColor: "transparent",
          borderWidth: 0,
          borderRadius: 5,
        }}
      />

The Issue can be easily fixed by updating to react native element 1.0.0 beta 4

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.