diff --git a/imagesrc/circuit.svg b/imagesrc/circuit.svg new file mode 100644 index 0000000..1cc03c8 --- /dev/null +++ b/imagesrc/circuit.svg @@ -0,0 +1,47 @@ + + + + + + + + Electronic Circuit + Electronic Circuit + + + electronic + motherboard + graphic card + green + + + + + Open Clip Art Library + + + + + Jakub Jankiewicz + + + + + Jakub Jankiewicz + + + 2010 + image/svg+xml + + + en + + + + + + + + + + diff --git a/imagesrc/menulogobottom.svg b/imagesrc/menulogobottom.svg new file mode 100644 index 0000000..82d9b82 --- /dev/null +++ b/imagesrc/menulogobottom.svg @@ -0,0 +1,113 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/src/components/calc.js b/src/components/calc.js index 0efe127..b9dc767 100644 --- a/src/components/calc.js +++ b/src/components/calc.js @@ -129,7 +129,7 @@ export default class Calc extends Component { onPress={() => { Alert.alert( 'No Solution Exists', - 'This app recommends resistors to be added in parallel. It\'s impossible to increase resistance (to make it closer to the target) by adding another resistor in parallel.\n\nPlease remove the lowest value resistor if you wish to keep solving.', + 'This app recommends resistors to be added in parallel. It\'s impossible to increase resistance (to make it closer to the target) by adding another resistor in parallel.\n\nPlease remove the resistor and find a higher one if you wish to keep solving.', [{text: 'OK'}] ); }} diff --git a/src/components/menu.js b/src/components/menu.js index ec4ca0e..9442d60 100644 --- a/src/components/menu.js +++ b/src/components/menu.js @@ -9,7 +9,7 @@ const styles = { flex: 1, }, menutable: { - borderBottomColor: 'lightgrey', + borderBottomColor: '#96b885', borderBottomWidth: 1, padding: 15, fontSize: 16, @@ -33,6 +33,7 @@ export default class Menu extends Component { Tips About + ); } diff --git a/src/components/resistor.js b/src/components/resistor.js index 64cd518..0278125 100644 --- a/src/components/resistor.js +++ b/src/components/resistor.js @@ -58,7 +58,7 @@ class Resistor extends Component { value={data.value || ''} onChangeText={(x) => updatevalue(x)} style={Object.assign({}, styles.resistorinput, { - borderColor: data.valid ? 'grey' : 'red', + borderColor: data.valid ? '#3f7d20' : 'red', })} underlineColorAndroid={'transparent'} autoCorrect={false} diff --git a/src/images/menulogo.png b/src/images/menulogo.png index 8e3f03d..d8b69c5 100644 Binary files a/src/images/menulogo.png and b/src/images/menulogo.png differ diff --git a/src/images/menulogobottom.png b/src/images/menulogobottom.png new file mode 100644 index 0000000..1cd9351 Binary files /dev/null and b/src/images/menulogobottom.png differ