import React from 'react'; import {StyleSheet, View, Text , Button} from 'react-native'; import { TextInput } from 'react-native'; export default class MainBar{ constructor(){ this.__save = null } onSave(fn){ this.__save = fn; } save(){ this.__save && this.__save(); } triggerSave(){ this.save(); } none(){ } render(){ return ( Structure Design