1234567891011121314151617181920212223242526272829303132333435 |
- import Tool from '../Systems/Tool';
- import { View , Text , Button , TextInput , StyleSheet} from 'react-native';
- import { Icon } from 'react-native-elements'
- import React from 'react';
- export default class Add extends Tool{
- constructor(){
- super()
- }
- editViewNode(node){
- console.log("I have the node here now i can manipulate the Dom by addind")
- console.log(node)
- }
- render(){
- return(
- <View style={mStyle.container}>
- <Button
- title={<Icon name='add'
- />}
- />
- <Text>Add Item</Text>
- </View>
- )
- }
- }
- const mStyle = StyleSheet.create({
- container:{
- flex:1,
- flexDirection:'row'
- }
- })
|