Skip to content

Commit

Permalink
change size image
Browse files Browse the repository at this point in the history
  • Loading branch information
jackbereson committed Nov 5, 2019
1 parent 5cbe4e7 commit 30a0c00
Show file tree
Hide file tree
Showing 223 changed files with 221 additions and 2,330 deletions.
4 changes: 2 additions & 2 deletions .expo/packager-info.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"expoServerPort": 19000,
"packagerPort": 19001,
"packagerPid": 15280,
"packagerPid": 19012,
"expoServerNgrokUrl": "https://nn-29z.anonymous.450cauhoisathachgplx.exp.direct",
"packagerNgrokUrl": "https://packager.nn-29z.anonymous.450cauhoisathachgplx.exp.direct",
"ngrokPid": 15400,
"ngrokPid": 11328,
"devToolsPort": 19002
}
4 changes: 2 additions & 2 deletions Views/ExamsScreen/components/QuestionsList.android.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import styled from "styled-components";
import AutoHeightImage from 'react-native-auto-height-image';
import AnswersList from './AnswersList';
import TrueAnswersList from './TrueAnswersList';
import { questPic } from './../../../assets/quests/index';
import { questPic } from '../../../services/imgLinks';

const QuestionsList = props => {
const { questions, checkAnswer, trueAnswersDisplay } = props;
Expand All @@ -23,7 +23,7 @@ const QuestionsList = props => {
<Question>
{content}
</Question>
<AutoHeightImage width={320} source={pic} />
<AutoHeightImage width={320} source={{uri: pic}} />
</>
);
}
Expand Down
4 changes: 2 additions & 2 deletions Views/ExamsScreen/components/QuestionsList.ios.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import styled from "styled-components";
import AutoHeightImage from 'react-native-auto-height-image';
import AnswersList from './AnswersList';
import TrueAnswersList from './TrueAnswersList';
import { questPic } from './../../../assets/quests/index';
import { questPic } from '../../../services/imgLinks';

const QuestionsList = props => {
const { questions, checkAnswer, trueAnswersDisplay } = props;
Expand All @@ -23,7 +23,7 @@ const QuestionsList = props => {
<Question>
{content}
</Question>
<AutoHeightImage width={380} source={pic} />
<AutoHeightImage width={380} source={{uri: pic}} />
</>
);
}
Expand Down
4 changes: 2 additions & 2 deletions Views/RandomExamsScreen/components/QuestionsList.android.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import styled from "styled-components";
import AutoHeightImage from 'react-native-auto-height-image';
import AnswersList from './AnswersList';
import TrueAnswersList from './TrueAnswersList';
import { questPic } from './../../../assets/quests/index';
import { questPic } from '../../../services/imgLinks';

const QuestionsList = props => {
const { questions, checkAnswer, trueAnswersDisplay } = props;
Expand All @@ -23,7 +23,7 @@ const QuestionsList = props => {
<Question>
{content}
</Question>
<AutoHeightImage width={320} source={pic} />
<AutoHeightImage width={320} source={{uri: pic}} />
</>
);
}
Expand Down
4 changes: 2 additions & 2 deletions Views/RandomExamsScreen/components/QuestionsList.ios.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import styled from "styled-components";
import AutoHeightImage from 'react-native-auto-height-image';
import AnswersList from './AnswersList';
import TrueAnswersList from './TrueAnswersList';
import { questPic } from './../../../assets/quests/index';
import { questPic } from '../../../services/imgLinks';

const QuestionsList = props => {
const { questions, checkAnswer, trueAnswersDisplay } = props;
Expand All @@ -23,7 +23,7 @@ const QuestionsList = props => {
<Question>
{content}
</Question>
<AutoHeightImage width={380} source={pic} />
<AutoHeightImage width={380} source={{uri: pic}} />
</>
);
}
Expand Down
4 changes: 2 additions & 2 deletions Views/StudyScreen/components/QuestionsList.android.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import styled from "styled-components";
import AutoHeightImage from "react-native-auto-height-image";
import AnswerOptions from "./AnswerOptions";
import ManualAnswerOptions from "./ManualAnswerOptions";
import { questPic } from "./../../../assets/quests/index";
import { questPic } from "../../../services/imgLinks";

class QuestionsList extends PureComponent {
render() {
Expand All @@ -22,7 +22,7 @@ class QuestionsList extends PureComponent {
questionHtml = (
<>
<Question>{content}</Question>
<AutoHeightImage width={320} source={pic} />
<AutoHeightImage width={320} source={{uri: pic}} />
</>
);
}
Expand Down
4 changes: 2 additions & 2 deletions Views/StudyScreen/components/QuestionsList.ios.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import styled from "styled-components";
import AutoHeightImage from "react-native-auto-height-image";
import AnswerOptions from "./AnswerOptions";
import ManualAnswerOptions from "./ManualAnswerOptions";
import { questPic } from "./../../../assets/quests/index";
import { questPic } from "../../../services/imgLinks";

class QuestionsList extends PureComponent {
render() {
Expand All @@ -22,7 +22,7 @@ class QuestionsList extends PureComponent {
questionHtml = (
<>
<Question>{content}</Question>
<AutoHeightImage width={380} source={pic} />
<AutoHeightImage width={380} source={{uri: pic}} />
</>
);
}
Expand Down
1 change: 0 additions & 1 deletion assets/animations/HamburgerArrow.json

This file was deleted.

Loading

0 comments on commit 30a0c00

Please sign in to comment.