Skip to content

Commit

Permalink
change cat position
Browse files Browse the repository at this point in the history
  • Loading branch information
Ilya Gribov authored and mishaberezin committed May 11, 2020
1 parent d86606a commit 6a03c34
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
1 change: 1 addition & 0 deletions app.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"expo": {
"name": "arenda",
"slug": "arenda",
"sdkVersion": "37.0.0",
"version": "1.0.0",
"description": "Renting App for Better World",
"platforms": ["ios"],
Expand Down
3 changes: 1 addition & 2 deletions src/components/collapsible-row.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ import { Button } from 'react-native-elements';
import { AntDesign } from '@expo/vector-icons';
import Collapsible from 'react-native-collapsible';

export const CollapsibleRow = props => {
const { children, title } = props;
export const CollapsibleRow = ({ children, title }) => {
const [collapsed, setCollapsed] = useState(true);

return (
Expand Down
4 changes: 2 additions & 2 deletions src/components/plate-header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ export const PlateHeader = withStyles(PlateHeaderContainer, () => ({
},
catContainer: {
position: 'absolute',
top: 31,
left: 14,
top: 21,
left: 16,
},
headerText: {
paddingLeft: 20,
Expand Down

0 comments on commit 6a03c34

Please sign in to comment.