diff --git a/components/Settings/LayoutSettings.js b/components/Settings/LayoutSettings.js index b5e4724..1bda4d5 100644 --- a/components/Settings/LayoutSettings.js +++ b/components/Settings/LayoutSettings.js @@ -125,19 +125,14 @@ const SimpleSwitch = ({ bool, setBool, str }) => ( checked={bool == "true" ? true : false} checkedColor="red" onPress={() => setBool(bool == "true" ? "false" : "true")} - /> - - {str} - + textStyle={{ fontSize: 20 }} + title={str} + /> );