Update sample application with removed Push page (#368)

* Removed push page

* Deleted Push page asset.

* Removed unused assets
This commit is contained in:
Anatoly Pristensky 2021-08-11 14:58:46 +03:00 коммит произвёл GitHub
Родитель 8caaeac428
Коммит b2edd3755f
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
5 изменённых файлов: 0 добавлений и 34 удалений

Просмотреть файл

@ -43,5 +43,4 @@ Make sure you have the testing device plugged in or an emulator running and run
| [Distribute](https://docs.microsoft.com/en-us/appcenter/quickstarts/android/distribute) | Distribute application to a group of users | ![image](https://user-images.githubusercontent.com/30265843/38382777-81af96e8-3913-11e8-8c13-b191921e28ea.png) |
| [Crashes](https://docs.microsoft.com/en-us/appcenter/quickstarts/android/crashes) | Monitor application crashes | ![image](https://user-images.githubusercontent.com/30265843/38382795-8d46268e-3913-11e8-8363-da1f9b621cfa.png) |
| [Analytics](https://docs.microsoft.com/en-us/appcenter/quickstarts/android/analytics) | View user analytics | ![image](https://user-images.githubusercontent.com/30265843/38382813-953b1b56-3913-11e8-9e47-0f12c3f52149.png) |
| [Push](https://docs.microsoft.com/en-us/appcenter/quickstarts/android/push) | Send push notifications to your app users | ![image](https://user-images.githubusercontent.com/30265843/38382824-9d21b942-3913-11e8-99c9-d600a825293f.png) |
| [CodePush](https://docs.microsoft.com/en-us/appcenter/distribution/codepush/) | Deploy mobile app updates directly to their users devices | ![image](https://user-images.githubusercontent.com/30265843/38382840-a801ed64-3913-11e8-9e0d-36a5b7092a98.png) |

Двоичные данные
res/push.png

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 30 KiB

Просмотреть файл

@ -10,7 +10,6 @@ import { TestScreen } from "./screens/testScreen";
import { DistributeScreen } from "./screens/distributeScreen";
import { CrashesScreen } from "./screens/crashesScreen";
import { AnalyticsScreen } from "./screens/analyticsScreen";
import { PushScreen } from "./screens/pushScreen";
import { CodePushScreen } from "./screens/codePushScreen";
import "react-native-gesture-handler";
@ -20,7 +19,6 @@ const CodePushStack = createStackNavigator({ screen: CodePushScreen });
const DistributeStack = createStackNavigator({ screen: DistributeScreen });
const CrashesStack = createStackNavigator({ screen: CrashesScreen });
const AnalyticsStack = createStackNavigator({ screen: AnalyticsScreen });
const PushStack = createStackNavigator({ screen: PushScreen });
const RootStack = createMaterialTopTabNavigator(
{
Welcome: WelcomeScreen,
@ -30,7 +28,6 @@ const RootStack = createMaterialTopTabNavigator(
Distribute: DistributeStack,
Crashes: CrashesStack,
Analytics: AnalyticsStack,
Push: PushStack
},
{
initialRouteName: "Welcome",

Просмотреть файл

@ -4,7 +4,6 @@ export default {
build: require("../res/build.png"),
crashes: require("../res/crashes.png"),
distribute: require("../res/distribute.png"),
push: require("../res/push.png"),
test: require("../res/test.png"),
codepush: require("../res/codepush.png")
};

Просмотреть файл

@ -1,29 +0,0 @@
import * as React from "react";
import { View, Text, Image } from "react-native";
import BaseScreen from "../components/baseScreen";
import images from "../images";
export class PushScreen extends React.Component {
render() {
return (
<View style={{ flex: 1 }} testID="pushScreen" accessibilityLabel={"pushScreen"} accessible={true}>
<BaseScreen
options={{
title: "Push",
topContainer: {
height: 200,
backgroundColor: "#E2553D",
imageSource: images.push
},
bottomContainer: {
backgroundColor: "#F56D4F",
description:
"Engage your users by sending them targeted messages to specific sets of users at exactly the right time.Create segments of users based on device and custom properties."
}
}}
/>
</View>
);
}
}