-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[#5] feat - ajusting create marker modal
Co-authored-by: Alexandre Miguel <aleronupe@gmail.com> Signed-off-by: Guilherme Banci <guibanci@gmail.com>
- Loading branch information
Showing
11 changed files
with
181 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
module.exports = { | ||
preset: 'react-native', | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
diff --git a/node_modules/rn-material-ui-textfield/src/components/outline/index.js b/node_modules/rn-material-ui-textfield/src/components/outline/index.js | ||
index 8d0d8c1..660a28e 100644 | ||
--- a/node_modules/rn-material-ui-textfield/src/components/outline/index.js | ||
+++ b/node_modules/rn-material-ui-textfield/src/components/outline/index.js | ||
@@ -2,7 +2,8 @@ import PropTypes from 'prop-types' | ||
import React, { Fragment, PureComponent } from 'react' | ||
import { View, Animated, I18nManager } from 'react-native' | ||
|
||
-import styles, { borderRadius } from './styles' | ||
+import styles from './styles' | ||
+const borderRadius = 4 | ||
|
||
export default class Line extends PureComponent { | ||
static defaultProps = { | ||
diff --git a/node_modules/rn-material-ui-textfield/src/components/outline/styles.js b/node_modules/rn-material-ui-textfield/src/components/outline/styles.js | ||
index a6e0d0f..64b407b 100644 | ||
--- a/node_modules/rn-material-ui-textfield/src/components/outline/styles.js | ||
+++ b/node_modules/rn-material-ui-textfield/src/components/outline/styles.js | ||
@@ -1,6 +1,6 @@ | ||
import { StyleSheet, Platform } from 'react-native' | ||
|
||
-export const borderRadius = 4 | ||
+export const borderRadius = 10 | ||
|
||
let containerStyle = { | ||
position: 'absolute', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import React from 'react'; | ||
import {View, Text} from 'components/UI'; | ||
|
||
const Page2 = () => { | ||
return ( | ||
<View flex={1} alignItems="center" justifyContent="center"> | ||
<Text>Page 2</Text> | ||
</View> | ||
); | ||
}; | ||
|
||
export default Page2; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import styled from 'styled-components/native'; | ||
|
||
export const Container = styled.View` | ||
padding: 20px; | ||
`; | ||
|
||
export const FirstInput = styled.View` | ||
flex-direction: row; | ||
align-items: center; | ||
`; | ||
|
||
export const InputView = styled.View` | ||
flex: 1; | ||
`; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters