import React from 'react';
import {
AppBar,
IconButton,
Icon,
Text,
HStack,
VStack,
Button,
} from 'native-base';
import { TouchableOpacity } from 'react-native';
export default function Examples() {
return (
);
}
function Material() {
return (
Title
Subtitle
);
}
function IOSLike() {
return (
Back
Header
);
}
function Customized() {
return (
}
/>
Library
}
/>
);
}
function CustomizedWithBorder() {
return (
} />
Home
} />
}
/>
}
/>
);
}
const LeftArrowIconButton = () => {
return (
}
/>
);
};
const HeartIcon = () => {
return (
}
/>
);
};
const SearchIcon = () => {
return (
}
/>
);
};
const MoreIcon = () => {
return } />;
};