2015-09-14 14:35:58 +00:00
|
|
|
/**
|
2018-09-11 22:27:47 +00:00
|
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
2016-07-12 12:51:57 +00:00
|
|
|
*
|
2018-02-17 02:24:55 +00:00
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2016-07-12 12:51:57 +00:00
|
|
|
*
|
2018-05-11 20:32:37 +00:00
|
|
|
* @format
|
2018-08-08 17:39:16 +00:00
|
|
|
* @flow
|
2015-09-14 14:35:58 +00:00
|
|
|
*/
|
2015-09-16 17:30:53 +00:00
|
|
|
|
2015-09-14 14:35:58 +00:00
|
|
|
'use strict';
|
|
|
|
|
2016-04-09 03:36:40 +00:00
|
|
|
var React = require('react');
|
|
|
|
var ReactNative = require('react-native');
|
2018-05-11 20:32:37 +00:00
|
|
|
var {StyleSheet, Text, ToastAndroid, TouchableWithoutFeedback} = ReactNative;
|
2015-09-14 14:35:58 +00:00
|
|
|
|
2017-05-06 03:50:47 +00:00
|
|
|
var RNTesterBlock = require('RNTesterBlock');
|
|
|
|
var RNTesterPage = require('RNTesterPage');
|
2015-09-14 14:35:58 +00:00
|
|
|
|
2017-08-18 01:36:54 +00:00
|
|
|
class ToastExample extends React.Component<{}, $FlowFixMeState> {
|
2016-07-26 08:00:02 +00:00
|
|
|
static title = 'Toast Example';
|
2018-06-06 12:20:40 +00:00
|
|
|
static description =
|
|
|
|
'Example that demonstrates the use of an Android Toast to provide feedback.';
|
2016-07-26 08:00:02 +00:00
|
|
|
state = {};
|
2015-09-14 14:35:58 +00:00
|
|
|
|
2016-07-26 08:00:02 +00:00
|
|
|
render() {
|
2015-09-14 14:35:58 +00:00
|
|
|
return (
|
2017-05-06 03:50:47 +00:00
|
|
|
<RNTesterPage title="ToastAndroid">
|
|
|
|
<RNTesterBlock title="Simple toast">
|
2015-09-14 14:35:58 +00:00
|
|
|
<TouchableWithoutFeedback
|
|
|
|
onPress={() =>
|
2018-05-11 20:32:37 +00:00
|
|
|
ToastAndroid.show(
|
|
|
|
'This is a toast with short duration',
|
|
|
|
ToastAndroid.SHORT,
|
|
|
|
)
|
|
|
|
}>
|
2015-09-14 14:35:58 +00:00
|
|
|
<Text style={styles.text}>Click me.</Text>
|
|
|
|
</TouchableWithoutFeedback>
|
2017-05-06 03:50:47 +00:00
|
|
|
</RNTesterBlock>
|
|
|
|
<RNTesterBlock title="Toast with long duration">
|
2015-09-14 14:35:58 +00:00
|
|
|
<TouchableWithoutFeedback
|
|
|
|
onPress={() =>
|
2018-05-11 20:32:37 +00:00
|
|
|
ToastAndroid.show(
|
|
|
|
'This is a toast with long duration',
|
|
|
|
ToastAndroid.LONG,
|
|
|
|
)
|
|
|
|
}>
|
2016-07-20 15:07:06 +00:00
|
|
|
<Text style={styles.text}>Click me.</Text>
|
|
|
|
</TouchableWithoutFeedback>
|
2017-05-06 03:50:47 +00:00
|
|
|
</RNTesterBlock>
|
|
|
|
<RNTesterBlock title="Toast with top gravity">
|
2016-07-20 15:07:06 +00:00
|
|
|
<TouchableWithoutFeedback
|
|
|
|
onPress={() =>
|
|
|
|
ToastAndroid.showWithGravity(
|
|
|
|
'This is a toast with top gravity',
|
|
|
|
ToastAndroid.SHORT,
|
|
|
|
ToastAndroid.TOP,
|
|
|
|
)
|
|
|
|
}>
|
|
|
|
<Text style={styles.text}>Click me.</Text>
|
|
|
|
</TouchableWithoutFeedback>
|
2017-05-06 03:50:47 +00:00
|
|
|
</RNTesterBlock>
|
|
|
|
<RNTesterBlock title="Toast with center gravity">
|
2016-07-20 15:07:06 +00:00
|
|
|
<TouchableWithoutFeedback
|
|
|
|
onPress={() =>
|
|
|
|
ToastAndroid.showWithGravity(
|
|
|
|
'This is a toast with center gravity',
|
|
|
|
ToastAndroid.SHORT,
|
|
|
|
ToastAndroid.CENTER,
|
|
|
|
)
|
|
|
|
}>
|
|
|
|
<Text style={styles.text}>Click me.</Text>
|
|
|
|
</TouchableWithoutFeedback>
|
2017-05-06 03:50:47 +00:00
|
|
|
</RNTesterBlock>
|
|
|
|
<RNTesterBlock title="Toast with bottom gravity">
|
2016-07-20 15:07:06 +00:00
|
|
|
<TouchableWithoutFeedback
|
|
|
|
onPress={() =>
|
|
|
|
ToastAndroid.showWithGravity(
|
|
|
|
'This is a toast with bottom gravity',
|
|
|
|
ToastAndroid.SHORT,
|
|
|
|
ToastAndroid.BOTTOM,
|
|
|
|
)
|
|
|
|
}>
|
|
|
|
<Text style={styles.text}>Click me.</Text>
|
2015-09-14 14:35:58 +00:00
|
|
|
</TouchableWithoutFeedback>
|
2017-05-06 03:50:47 +00:00
|
|
|
</RNTesterBlock>
|
2017-08-04 15:54:49 +00:00
|
|
|
<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>
|
2017-05-06 03:50:47 +00:00
|
|
|
</RNTesterPage>
|
2015-09-14 14:35:58 +00:00
|
|
|
);
|
2016-07-26 08:00:02 +00:00
|
|
|
}
|
|
|
|
}
|
2015-09-14 14:35:58 +00:00
|
|
|
|
|
|
|
var styles = StyleSheet.create({
|
|
|
|
text: {
|
|
|
|
color: 'black',
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
module.exports = ToastExample;
|