Introducing AlienX extension – The next evolution of UI development.Check it out on VS Code
Enjoy AlienUI? Give it a star on Github ⭐
A customizable search bar.
A default search bar for searching the galaxy.
import { View, TextInput } from "react-native";
import React from "react";
import EvilIcons from "@expo/vector-icons/EvilIcons";
const SearchBar = () => {
return (
<View className="mx-4 my-3">
<View className="flex-row items-center bg-gray-100 rounded-full px-4 py-3">
<EvilIcons name="search" size={24} color="gray" />
<TextInput
placeholder="Search the galaxy..."
className="flex-1 ml-2 text-base outline-none"
placeholderTextColor="gray"
/>
</View>
</View>
);
};
export default SearchBar;
import React from "react";
import { View } from "react-native";
import SearchBar from "./components/SearchBar/GalaxySearchBar";
const App = () => {
return (
<View>
<SearchBar />
</View>
);
};
export default App;