Skip to content

Commit

Permalink
Home Icon and Jobs Applied Icons added plus imported all icons
Browse files Browse the repository at this point in the history
  • Loading branch information
tharindug99 committed Mar 1, 2024
1 parent 311db6a commit 2cf8322
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions Navigation/UndergraduateView/tabs.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,13 @@ import LoginScreen from '../../src/screens/LoginScreen/LoginScreen';
import RegisterScreen from '../../src/screens/Authentication/RegistrationScreen/RegistrationScreen';
import OptionsSelection from '../../src/screens/Authentication/OptionsSelection/OptionSelection';
import JobSelection from '../../src/screens/Authentication/Job selection/JobSelection';

///Icons imported for the bottom Navbar
import SearchIcon from '../../src/assets/icons/search.png';
import HomeIcon from '../../src/assets/icons/Home.png';
import SettingsIcon from '../../src/assets/icons/search.png';
import JobsAppliedIcon from '../../src/assets/icons/jobsApplied.png';
import ProfileIcon from '../../src/assets/icons/search.png';

const Tab = createBottomTabNavigator();

Expand All @@ -32,7 +38,7 @@ const Tabs = () => {
tabBarIcon: ({focused}) => (
<View style={{alignItems: 'center', justifyContent: 'center', top: 10}}>
<Image
source={SearchIcon}
source={HomeIcon}
resizeMode="contain"
style={{
width: 25,
Expand All @@ -50,16 +56,16 @@ const Tabs = () => {
tabBarIcon: ({focused}) => (
<View style={{alignItems: 'center', justifyContent: 'center', top: 10}}>
<Image
source={SearchIcon}
source={JobsAppliedIcon}
resizeMode="contain"
style={{
width: 25,
height: 25,
tintColor: focused ? '#019F99' : '#748c94'
}}
/>
<Text style={{color: focused ? '#019F99' : '#748c94', fontSize: 12}}>
Login
<Text style={{color: focused ? '#019F99' : '#748c94', fontSize: 12,textAlign:'center'}}>
Jobs Applied
</Text>
</View>
)
Expand Down
Binary file added src/assets/icons/jobsApplied.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 src/assets/icons/notification.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 modified src/assets/icons/setting.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 src/assets/icons/user.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 2cf8322

Please sign in to comment.