30 lines
674 B
JavaScript
30 lines
674 B
JavaScript
/**
|
|
* Sample React Native App
|
|
* https://github.com/facebook/react-native
|
|
*
|
|
* @format
|
|
* @flow
|
|
*/
|
|
|
|
import React, {Component} from 'react';
|
|
import {Platform, StyleSheet,FlatList, Text, View,ScrollView} from 'react-native';
|
|
import ActionButton from 'react-native-action-button';
|
|
import Icon from 'react-native-vector-icons/Ionicons';
|
|
import {responsiveFontSize,responsiveHeight,responsiveWidth} from 'react-native-responsive-dimensions';
|
|
|
|
type Props = {};
|
|
export class Requester extends Component {
|
|
|
|
render () {
|
|
return (
|
|
<View style={styles.container}>
|
|
<ScrollView>
|
|
|
|
</ScrollView>
|
|
</View>
|
|
|
|
)
|
|
}
|
|
}
|
|
|