Skip to content

Commit

Permalink
HomeScreen UI
Browse files Browse the repository at this point in the history
  • Loading branch information
suyashshenoi committed Dec 22, 2023
1 parent 9dd149f commit aac686f
Show file tree
Hide file tree
Showing 21 changed files with 8,430 additions and 19 deletions.
15 changes: 8 additions & 7 deletions App.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
import { StyleSheet, Text, View } from 'react-native'
import React from 'react'
import { StyleSheet, View } from 'react-native';
import React from 'react';
import HomeScreen from './screens/UserEnd/HomeScreen';

const App = () => {
return (
<View>
<Text>App</Text>
<HomeScreen />
</View>
)
}
);
};

export default App
export default App;

const styles = StyleSheet.create({})
const styles = StyleSheet.create({});
Binary file added assets/icons/Cartcart.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/icons/account.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/icons/cart.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/icons/filledStar.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/icons/home.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/icons/lineStar.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/icons/locationMarker.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/icons/orders.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/image/BestSeller.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/image/HomeAd.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/image/Keyboards.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/image/Laptops.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/image/Smartphones.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/image/Tablets.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/image/topBar.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 20 additions & 0 deletions constants/Colors.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
export default colors = {
primary: "#FB6831",
primary_light: "#FFC8B2",
primary_shadow: "#FB6A04",
secondary: "#31C4FB",
tertiary: "#AEE8FD",
success: "#90ee90",
danger: "#FF4848",
shadow: "#E7E8EA",
warning: "#FBD431",
info: "#F8F9FA",
light: "#F5F5F5",
dark: "#343A3F",
muted: "#707981",
white: "#FFFFFF",
notificationBar: "9289FF",
topBar: "#9146F2",
black: "#000000",
cart: "#9747FF",
};
Loading

0 comments on commit aac686f

Please sign in to comment.