render()

in src/screens/welcomeScreen.tsx [7:27]


  render() {
    return (
      <View style={{ flex: 1 }} testID="welcomeScreen" accessibilityLabel={"welcomeScreen"} accessible={true}>
        <BaseScreen
          options={{
            title: "Welcome",
            topContainer: {
              height: 150,
              backgroundColor: "#CB2E62",
              imageSource: images.aclogo
            },
            bottomContainer: {
              backgroundColor: "#252525",
              description:
                "Visual Studio App Center is mission control for apps. It brings together multiple services, commonly used for mobile developers, into a single, integrated product.\n\n\nSwipe right to learn about our services"
            }
          }}
        />
      </View>
    );
  }