12345678910111213141516171819202122232425262728293031 |
- 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={{backgroundColor:"red"}}>
- <Button style={{backgroundColor:"red"}}
- title={<Icon name='add'
- color="#606060"
- />}
- />
-
- </View>
- )
- }
- }
|