mirror of
https://github.com/mosip/inji-wallet.git
synced 2026-01-07 20:53:54 -05:00
updated
This commit is contained in:
@@ -2,15 +2,12 @@
|
|||||||
|
|
||||||
This project is made possible by the people and organizations listed in this document.
|
This project is made possible by the people and organizations listed in this document.
|
||||||
|
|
||||||
|
|
||||||
## Contributors
|
## Contributors
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||

|
|
||||||
|
|
||||||
[ID PASS](https://www.idpass.org/)
|
[ID PASS](https://www.idpass.org/)
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
[Newlogic](https://www.newlogic.com/)
|
[Newlogic](https://www.newlogic.com/)
|
||||||
|
|||||||
@@ -11,8 +11,8 @@ export const Credits: React.FC<CreditsProps> = (props) => {
|
|||||||
const [isViewing, setIsViewing] = useState(false);
|
const [isViewing, setIsViewing] = useState(false);
|
||||||
const [content, setContent] = useState("");
|
const [content, setContent] = useState("");
|
||||||
const images = {
|
const images = {
|
||||||
'newlogic_logo.png' : require('../../docs/images/newlogic_logo.png'),
|
'docs/images/newlogic_logo.png' : require('../../docs/images/newlogic_logo.png'),
|
||||||
'id_pass_logo.png' : require('../../docs/images/id_pass_logo.png'),
|
'docs/images/id_pass_logo.png' : require('../../docs/images/id_pass_logo.png'),
|
||||||
}
|
}
|
||||||
const styles = StyleSheet.create({
|
const styles = StyleSheet.create({
|
||||||
buttonContainer: {
|
buttonContainer: {
|
||||||
@@ -34,7 +34,8 @@ export const Credits: React.FC<CreditsProps> = (props) => {
|
|||||||
fontSize: 24,
|
fontSize: 24,
|
||||||
},
|
},
|
||||||
image: {
|
image: {
|
||||||
maxWidth: 150
|
maxWidth: 150,
|
||||||
|
margin: 0
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -50,7 +51,7 @@ export const Credits: React.FC<CreditsProps> = (props) => {
|
|||||||
react: (node, output, state) => (
|
react: (node, output, state) => (
|
||||||
<View key={`image-${state.key}`}>
|
<View key={`image-${state.key}`}>
|
||||||
<Image
|
<Image
|
||||||
style={{ width: 150, height: 50 }}
|
style={{ maxWidth: 150, height: 100 }}
|
||||||
source={images[node.target]}
|
source={images[node.target]}
|
||||||
resizeMode="contain"
|
resizeMode="contain"
|
||||||
/>
|
/>
|
||||||
|
|||||||
Reference in New Issue
Block a user