/** * Sample React Native App * https://github.com/facebook/react-native * * @format * @flow */ import React, { Component } from "react"; import { StyleSheet, Text, View } from "react-native"; export default class Order extends Component { render() { return ( 立即购买 一元秒杀 ); } } const styles = StyleSheet.create({ courseList: { position: 'absolute', bottom: 0, width: '100%', height: 57, backgroundColor: '#fff', display: 'flex', flexDirection: 'row', justifyContent: 'space-between', alignItems: 'center', paddingLeft: 20, paddingRight: 20, borderStyle: 'solid', borderTopWidth: 1, borderColor: '#000000' }, btn: { width: '45%', height: 35, borderRadius: 35, display: 'flex', flexDirection: 'row', alignItems: 'center', justifyContent: 'center', } });