Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

website ui changes #247

Open
wants to merge 27 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
0641ea6
website ui changes: change listview to gridview
AksAman Jun 14, 2023
371b673
[website] update Expo SDK and other dependencies (#249)
Simek Jul 13, 2023
15517c0
Bump minimist from 1.2.5 to 1.2.8 in /website (#243)
dependabot[bot] Jul 13, 2023
5e4ba16
Bump semver from 5.7.1 to 5.7.2 in /website (#251)
dependabot[bot] Jul 13, 2023
32f70b8
Bump @sideway/formula from 3.0.0 to 3.0.1 in /website (#253)
dependabot[bot] Jul 13, 2023
2db70b7
Bump cross-fetch from 3.1.4 to 3.1.8 in /website (#254)
dependabot[bot] Jul 13, 2023
913e177
Bump ua-parser-js from 0.7.22 to 0.7.35 in /website (#255)
dependabot[bot] Jul 13, 2023
f614f73
Bump qs from 6.5.2 to 6.5.3 (#239)
dependabot[bot] Jul 13, 2023
96773e2
Bump minimatch from 3.0.4 to 3.1.2 in /website (#256)
dependabot[bot] Jul 13, 2023
94da31a
Bump decode-uri-component from 0.2.0 to 0.2.2 (#237)
dependabot[bot] Jul 13, 2023
081e264
Bump async from 2.6.2 to 2.6.4 (#224)
dependabot[bot] Jul 13, 2023
acb8f19
Bump semver from 5.6.0 to 5.7.2 (#252)
dependabot[bot] Jul 13, 2023
dec991f
Bump simple-plist from 1.1.1 to 1.3.1 in /website (#223)
dependabot[bot] Jul 13, 2023
b476c4f
Bump minimatch from 3.0.4 to 3.1.2 (#257)
dependabot[bot] Jul 13, 2023
9ac3a7a
Bump shell-quote from 1.7.2 to 1.8.1 in /website (#258)
dependabot[bot] Jul 13, 2023
c15337d
Bump ansi-regex from 4.1.0 to 4.1.1 in /website (#259)
dependabot[bot] Jul 13, 2023
485cf34
Bump node-fetch from 2.6.1 to 2.6.12 in /website (#260)
dependabot[bot] Jul 13, 2023
36bbfd9
Bump tar from 6.0.5 to 6.1.15 in /website (#261)
dependabot[bot] Jul 13, 2023
b6ee07c
deduplicate locks
Simek Jul 13, 2023
5df6d00
Bump hosted-git-info from 3.0.7 to 3.0.8 in /website (#262)
dependabot[bot] Jul 13, 2023
a9c0d66
Bump glob-parent from 5.1.1 to 5.1.2 in /website (#263)
dependabot[bot] Jul 13, 2023
9848cf9
Bump ini from 1.3.5 to 1.3.8 in /website (#264)
dependabot[bot] Jul 13, 2023
ce51046
Removed comments, debug statements and fixed focused styles and type
AksAman Jul 13, 2023
a7f3d7d
delete package.lock
AksAman Jul 13, 2023
fa17b4a
rebase gitignore and website/yarn.lock
AksAman Jul 13, 2023
973da60
rebase with upstream/master
AksAman Jul 13, 2023
e4fa578
rebase with upstream/master
AksAman Jul 13, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ node_modules/**/*
yarn-error.log
.DS_Store

.now
.now
.vscode
2 changes: 1 addition & 1 deletion website/components/FilterButton.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const styles = StyleSheet.create({
alignItems: 'center',
justifyContent: 'center',
backgroundColor: '#515460',
width: 90,
width: 100,
paddingVertical: 5,
},
});
Expand Down
29 changes: 22 additions & 7 deletions website/components/ListItem.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import Icon from "./Icon";

const ListItem = ({ name, family, onPress }) => {
return (
<TouchableOpacity onPress={onPress}>
<TouchableOpacity onPress={onPress} style={styles.mainContainer}>
<View style={styles.container}>
<View style={{ width: 50, justifyContent: 'center', alignItems: 'center' }}>
<Icon family={family} name={name} size={30} />
Expand All @@ -20,25 +20,40 @@ const ListItem = ({ name, family, onPress }) => {
};

const styles = StyleSheet.create({
mainContainer: {
flex: 1,
width: "49.5%",
marginRight: 10,
alignItems: "center",
justifyContent: "center",
},
container: {
flexDirection: "row",
paddingLeft: 20,
// flexDirection: "row",
// paddingLeft: 20,
AksAman marked this conversation as resolved.
Show resolved Hide resolved
textAlign: "center",
paddingVertical: 15,
justifyContent: "center",
alignItems: "center",
borderBottomWidth: 1,
borderBottomColor: "#e3e3e3",
gap: 6,
// borderBottomWidth: 1,
// borderBottomColor: "#e3e3e3",
// borderWidth: 1,
// borderColor: "#e3e3e3",
backgroundColor: "#fafafa",
width: "100%",
},
textView: {
flexDirection: "column",
marginLeft: 20,
// marginLeft: 20,
},
name: {
fontSize: 18,
fontWeight: "bold",
fontWeight: "500",
},
family: {
fontSize: 13,
fontWeight: "normal",
color: "#7e7e7e",
},
});

Expand Down
Loading