// withHooks
// noPage
import esp from 'esoftplay/esp';

import { LibNavigation } from 'esoftplay/cache/lib/navigation/import';
import { MarketButton } from 'esoftplay/cache/market/button/import';
import { MarketStyle } from 'esoftplay/cache/market/style/import';

import React from 'react';
import { Text, View } from 'react-native';


export interface MarketProduct_discuss_emptyArgs {

}
export interface MarketProduct_discuss_emptyProps {

}
export default function m(props: MarketProduct_discuss_emptyProps): any {
  return (
    <View>
      <Text allowFontScaling={false} style={{ marginTop: 15, marginBottom: 8, marginLeft: 25, fontFamily: "Arial", fontSize: 14, fontWeight: "bold", fontStyle: "normal", lineHeight: 16, letterSpacing: 0, textAlign: "left", color: "#03192a" }}>{esp.lang("market/product_discuss_empty", "ask")}</Text>
      <Text allowFontScaling={false} style={{ marginBottom: 15, marginLeft: 25, fontFamily: "Arial", fontSize: 12, fontStyle: "normal", lineHeight: 14, letterSpacing: 0, textAlign: "left", color: "#03192a" }}>{esp.lang("market/product_discuss_empty", "ask_info")}</Text>
      <MarketButton onPress={() => { LibNavigation.navigate('market/product_discuss_input') }} text={esp.lang("market/product_discuss_empty", "ask_now")} buttonStyle={{ marginBottom: 15, marginLeft: 25, height: 30, width: 150 }} textStyle={{ fontSize: 12 }} colorBackground="#fff" colorBorder={MarketStyle.colorPrimaryMarket} color={MarketStyle.colorPrimaryMarket} />
    </View>
  )
}