mirror of
https://github.com/status-im/react-native.git
synced 2025-02-22 14:18:23 +00:00
Summary: I removed `var` in RNTester. - [x] npm run prettier - [x] npm run flow-check-ios - [x] npm run flow-check-android [GENERAL] [ENHANCEMENT] [RNTester] - remove `var` Pull Request resolved: https://github.com/facebook/react-native/pull/22015 Differential Revision: D12843132 Pulled By: TheSavior fbshipit-source-id: ef835b25bc078fc870127946d013e01e34672b1b
127 lines
3.9 KiB
JavaScript
127 lines
3.9 KiB
JavaScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @format
|
|
* @flow
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const React = require('react');
|
|
const ReactNative = require('react-native');
|
|
const {StyleSheet, Text, ToastAndroid, TouchableWithoutFeedback} = ReactNative;
|
|
|
|
const RNTesterBlock = require('RNTesterBlock');
|
|
const RNTesterPage = require('RNTesterPage');
|
|
|
|
class ToastExample extends React.Component<{}, $FlowFixMeState> {
|
|
static title = 'Toast Example';
|
|
static description =
|
|
'Example that demonstrates the use of an Android Toast to provide feedback.';
|
|
state = {};
|
|
|
|
render() {
|
|
return (
|
|
<RNTesterPage title="ToastAndroid">
|
|
<RNTesterBlock title="Simple toast">
|
|
<TouchableWithoutFeedback
|
|
onPress={() =>
|
|
ToastAndroid.show(
|
|
'This is a toast with short duration',
|
|
ToastAndroid.SHORT,
|
|
)
|
|
}>
|
|
<Text style={styles.text}>Click me.</Text>
|
|
</TouchableWithoutFeedback>
|
|
</RNTesterBlock>
|
|
<RNTesterBlock title="Toast with long duration">
|
|
<TouchableWithoutFeedback
|
|
onPress={() =>
|
|
ToastAndroid.show(
|
|
'This is a toast with long duration',
|
|
ToastAndroid.LONG,
|
|
)
|
|
}>
|
|
<Text style={styles.text}>Click me.</Text>
|
|
</TouchableWithoutFeedback>
|
|
</RNTesterBlock>
|
|
<RNTesterBlock title="Toast with top gravity">
|
|
<TouchableWithoutFeedback
|
|
onPress={() =>
|
|
ToastAndroid.showWithGravity(
|
|
'This is a toast with top gravity',
|
|
ToastAndroid.SHORT,
|
|
ToastAndroid.TOP,
|
|
)
|
|
}>
|
|
<Text style={styles.text}>Click me.</Text>
|
|
</TouchableWithoutFeedback>
|
|
</RNTesterBlock>
|
|
<RNTesterBlock title="Toast with center gravity">
|
|
<TouchableWithoutFeedback
|
|
onPress={() =>
|
|
ToastAndroid.showWithGravity(
|
|
'This is a toast with center gravity',
|
|
ToastAndroid.SHORT,
|
|
ToastAndroid.CENTER,
|
|
)
|
|
}>
|
|
<Text style={styles.text}>Click me.</Text>
|
|
</TouchableWithoutFeedback>
|
|
</RNTesterBlock>
|
|
<RNTesterBlock title="Toast with bottom gravity">
|
|
<TouchableWithoutFeedback
|
|
onPress={() =>
|
|
ToastAndroid.showWithGravity(
|
|
'This is a toast with bottom gravity',
|
|
ToastAndroid.SHORT,
|
|
ToastAndroid.BOTTOM,
|
|
)
|
|
}>
|
|
<Text style={styles.text}>Click me.</Text>
|
|
</TouchableWithoutFeedback>
|
|
</RNTesterBlock>
|
|
<RNTesterBlock title="Toast with x offset">
|
|
<TouchableWithoutFeedback
|
|
onPress={() =>
|
|
ToastAndroid.showWithGravityAndOffset(
|
|
'This is a toast with x offset',
|
|
ToastAndroid.SHORT,
|
|
ToastAndroid.CENTER,
|
|
50,
|
|
0,
|
|
)
|
|
}>
|
|
<Text style={styles.text}>Click me.</Text>
|
|
</TouchableWithoutFeedback>
|
|
</RNTesterBlock>
|
|
<RNTesterBlock title="Toast with y offset">
|
|
<TouchableWithoutFeedback
|
|
onPress={() =>
|
|
ToastAndroid.showWithGravityAndOffset(
|
|
'This is a toast with y offset',
|
|
ToastAndroid.SHORT,
|
|
ToastAndroid.BOTTOM,
|
|
0,
|
|
50,
|
|
)
|
|
}>
|
|
<Text style={styles.text}>Click me.</Text>
|
|
</TouchableWithoutFeedback>
|
|
</RNTesterBlock>
|
|
</RNTesterPage>
|
|
);
|
|
}
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
text: {
|
|
color: 'black',
|
|
},
|
|
});
|
|
|
|
module.exports = ToastExample;
|