render()

in src/screens/buildScreen.tsx [8:28]


  render() {
    return (
      <View style={{ flex: 1 }} testID="buildScreen" accessibilityLabel={"buildScreen"} accessible={true}>
        <BaseScreen
          options={{
            title: "Build",
            topContainer: {
              height: 200,
              backgroundColor: "#0064C3",
              imageSource: images.build
            },
            bottomContainer: {
              backgroundColor: "#0078D7",
              description:
                "Create an installable app package automatically with every push to your repository. Supports GitHub, or Git repos on Bitbucket and Visual Studio Team Services (VSTS).\n\nNo additional build hardware required."
            }
          }}
        />
      </View>
    );
  }