Unable to solve some types error of flow in react-nativeWhat is the difference between using constructor vs getInitialState in React / React Native?What is the difference between React Native and React?Extending flow `type Props` to include prop types from another component?how to navigate to homescreen onPress of login button in react native?importing firebase to react-nativereact native snap carousel tinder animation not working for multiple slides getting hangedAnimatedview dissapear on clicking the view in react nativeChange components background using ref - react nativefetch data in react native from mlabReact-native firebase 5.6.0 Objects are not valid react child
Modeling the uncertainty of the input parameters
How much can I judge a company based on a phone screening?
Is there any way to stop a user from creating executables and running them?
Create the least compressible picture
Can renaming a method preserve encapsulation?
How was the murder committed?
Does one make a shehecheyanu on "used" jewelry?
Graphs for which a calculus student can reasonably compute the arclength
crippling fear of hellfire &, damnation, please help?
What kind of liquid can be seen 'leaking' from the upper surface of the wing of a Boeing 737-800?
Are there any other rule mechanics that could grant Thieves' Cant?
A torrent of foreign terms
PhD advisor lost funding, need advice
If you know the location of an invisible creature, can you attack it?
Are those flyers about apartment purchase a scam?
What are these funnel-looking green things in my yard?
Can I enter the USA with an E-2 visa and a one way flight ticket?
Boss asked a co-worker to assault me
How big are the Choedan Kal?
Are there really no countries that protect Freedom of Speech as the United States does?
Will using a resistor in series with a LED to control its voltage increase the total energy expenditure?
Why is the Lucas test not recommended to differentiate higher alcohols?
Do I have to cite common CS algorithms?
What is the hottest thing in the universe?
Unable to solve some types error of flow in react-native
What is the difference between using constructor vs getInitialState in React / React Native?What is the difference between React Native and React?Extending flow `type Props` to include prop types from another component?how to navigate to homescreen onPress of login button in react native?importing firebase to react-nativereact native snap carousel tinder animation not working for multiple slides getting hangedAnimatedview dissapear on clicking the view in react nativeChange components background using ref - react nativefetch data in react native from mlabReact-native firebase 5.6.0 Objects are not valid react child
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I decided to integrate flow in my project and unable to solve some types errors.i searched a lot but couldn't find what will be the types for below values.
eg.
- Type for references
- type for Props for consturctor
- Type for this.localNotifications(variable)
- How to define type for when we bind method.
I am sharing my code below and with errors I am getting. Thanks in advance
/*** @flow*/
import Component from 'react';
import * as React from 'react';
import
Text,
View,
Image,
TouchableOpacity,
AppState,
Alert,
TextInput
from 'react-native';
import Auth from 'aws-amplify';
import KeyboardAwareScrollView from 'react-native-keyboard-aware-scroll-view';
import PhoneInput from 'react-native-phone-input';
import
StackActions,
NavigationActions,
NavigationScreenProps
from 'react-navigation';
import ProgressDialog from 'react-native-simple-dialogs';
import styles from './Styles';
import FloatingLabelInput, CTAButton from 'Components';
import strings from '../../../utility/locales/i18n';
import AppUtil from 'Library/Utils/AppUtil';
import * as DateUtil from 'Library/Utils/DateUtil';
import R from 'Resources';
import inject, observer from 'mobx-react/native';
import Query from 'react-apollo';
import USER_TYPE, USER_ONBOARDING_STEP from 'Library/Constants';
import * as UserQueries from 'AppSyncQueries/UserQueries';
import LocalNotification from '../../../Components/LocalNotification/LocalNotification';
import PushNotificationController from '../../../Components/LocalNotification/PushNotificationController';
import moment from 'moment';
type Props = NavigationScreenProps & ;
type passwordRef = ;
type State =
userName: string,
password: string,
loading: boolean,
valid: boolean,
shouldLoadProfile: boolean
;
@inject('loginUserStore', 'userAccountStore', 'measurementUnitStore')
@observer
export class Login extends Component<Props, State>
static navigationOptions =
title: strings('login.title'),
header: null
;
constructor(props)
super(props);
this.passwordRef = React.createRef();
this.state =
userName: '',
password: '',
loading: false,
valid: false,
shouldLoadProfile: false,
startProgramDate: this.props.userAccountStore.programStartDate
;
this.updateInfo = this.updateInfo.bind(this);
this.localNotification = new LocalNotification();
this.scheduleLocalNotification = this.scheduleLocalNotification.bind(this);
onChangeText(key: string, value: string)
this.setState( password: value );
updateInfo()
this.setState(
valid: this.phone.isValidNumber()
);
gotoDashboard()
this.props.navigation.dispatch(AppUtil.resetAction('Dashboard', ));
completeNewPassword(user: any)
this.props.navigation.navigate('SetPassword', user: user );
startPasswordReset()
const title = strings('login.password_reset_required_title');
const message = strings('login.password_reset_required_message');
Alert.alert(title, message, [
text: 'Ok',
onPress: () =>
this.props.navigation.navigate('ResetPassword',
userName: this.phone.getValue()
);
]);
render()
return (
<KeyboardAwareScrollView
style= backgroundColor: R.Colors.COLOR_APP_BACKGROUND
scrollEnabled
extraScrollHeight=50
enableResetScrollCoords
resetScrollToCoords= x: 0, y: 0
>
<View style=styles.container>
AppUtil.renderProgressBar(
this.state.loading,
strings('common_message.please_wait')
)
<Image source=R.Images.logo style=styles.appLogo />
<View style=styles.loginContainer>
<TextInput
style= height: 35, color: '#929CA5', fontSize: 14
editable=false
selectTextOnFocus=false
value='Phone Number'
/>
<View style=styles.userName>
<PhoneInput
onPressFlag=this.onPressFlag
ref=ref =>
this.phone = ref;
/>
</View>
<View style= marginTop: 15, marginLeft: 1 >
<FloatingLabelInput
style=styles.textField
secureTextEntry
label='Password'
returnKeyType='done'
ref=this.passwordRef
value=this.state.password
onChangeText=text => this.setState( password: text )
/>
</View>
<View style=styles.forgotPasswordBtnContainer>
<TouchableOpacity onPress=this.gotoForgotPassword.bind(this)>
<Text style=styles.forgotPasswordBtn>Forgot Password?</Text>
</TouchableOpacity>
</View>
<CTAButton
label='LOGIN'
isEnabled=true
onClick=this.loginClick.bind(this)
style= marginTop: 30
/>
</View>
<PushNotificationController />
</View>
</KeyboardAwareScrollView>
);
If you check code of constructor you will find many variables and references are used.Still I would love to describe each error , That will helpful to understand
Missing type annotation for props.(for constructor props)
Cannot assign React.createRef() to this.passwordRef because property passwordRef is missing in Login[1]
Cannot assign this.updateInfo.bind(...) to this.updateInfo because property updateInfo is not writable.
Cannot assign new LocalNotification() to this.localNotification because property localNotification is missing in Login[1]
react-native flow
add a comment |
I decided to integrate flow in my project and unable to solve some types errors.i searched a lot but couldn't find what will be the types for below values.
eg.
- Type for references
- type for Props for consturctor
- Type for this.localNotifications(variable)
- How to define type for when we bind method.
I am sharing my code below and with errors I am getting. Thanks in advance
/*** @flow*/
import Component from 'react';
import * as React from 'react';
import
Text,
View,
Image,
TouchableOpacity,
AppState,
Alert,
TextInput
from 'react-native';
import Auth from 'aws-amplify';
import KeyboardAwareScrollView from 'react-native-keyboard-aware-scroll-view';
import PhoneInput from 'react-native-phone-input';
import
StackActions,
NavigationActions,
NavigationScreenProps
from 'react-navigation';
import ProgressDialog from 'react-native-simple-dialogs';
import styles from './Styles';
import FloatingLabelInput, CTAButton from 'Components';
import strings from '../../../utility/locales/i18n';
import AppUtil from 'Library/Utils/AppUtil';
import * as DateUtil from 'Library/Utils/DateUtil';
import R from 'Resources';
import inject, observer from 'mobx-react/native';
import Query from 'react-apollo';
import USER_TYPE, USER_ONBOARDING_STEP from 'Library/Constants';
import * as UserQueries from 'AppSyncQueries/UserQueries';
import LocalNotification from '../../../Components/LocalNotification/LocalNotification';
import PushNotificationController from '../../../Components/LocalNotification/PushNotificationController';
import moment from 'moment';
type Props = NavigationScreenProps & ;
type passwordRef = ;
type State =
userName: string,
password: string,
loading: boolean,
valid: boolean,
shouldLoadProfile: boolean
;
@inject('loginUserStore', 'userAccountStore', 'measurementUnitStore')
@observer
export class Login extends Component<Props, State>
static navigationOptions =
title: strings('login.title'),
header: null
;
constructor(props)
super(props);
this.passwordRef = React.createRef();
this.state =
userName: '',
password: '',
loading: false,
valid: false,
shouldLoadProfile: false,
startProgramDate: this.props.userAccountStore.programStartDate
;
this.updateInfo = this.updateInfo.bind(this);
this.localNotification = new LocalNotification();
this.scheduleLocalNotification = this.scheduleLocalNotification.bind(this);
onChangeText(key: string, value: string)
this.setState( password: value );
updateInfo()
this.setState(
valid: this.phone.isValidNumber()
);
gotoDashboard()
this.props.navigation.dispatch(AppUtil.resetAction('Dashboard', ));
completeNewPassword(user: any)
this.props.navigation.navigate('SetPassword', user: user );
startPasswordReset()
const title = strings('login.password_reset_required_title');
const message = strings('login.password_reset_required_message');
Alert.alert(title, message, [
text: 'Ok',
onPress: () =>
this.props.navigation.navigate('ResetPassword',
userName: this.phone.getValue()
);
]);
render()
return (
<KeyboardAwareScrollView
style= backgroundColor: R.Colors.COLOR_APP_BACKGROUND
scrollEnabled
extraScrollHeight=50
enableResetScrollCoords
resetScrollToCoords= x: 0, y: 0
>
<View style=styles.container>
AppUtil.renderProgressBar(
this.state.loading,
strings('common_message.please_wait')
)
<Image source=R.Images.logo style=styles.appLogo />
<View style=styles.loginContainer>
<TextInput
style= height: 35, color: '#929CA5', fontSize: 14
editable=false
selectTextOnFocus=false
value='Phone Number'
/>
<View style=styles.userName>
<PhoneInput
onPressFlag=this.onPressFlag
ref=ref =>
this.phone = ref;
/>
</View>
<View style= marginTop: 15, marginLeft: 1 >
<FloatingLabelInput
style=styles.textField
secureTextEntry
label='Password'
returnKeyType='done'
ref=this.passwordRef
value=this.state.password
onChangeText=text => this.setState( password: text )
/>
</View>
<View style=styles.forgotPasswordBtnContainer>
<TouchableOpacity onPress=this.gotoForgotPassword.bind(this)>
<Text style=styles.forgotPasswordBtn>Forgot Password?</Text>
</TouchableOpacity>
</View>
<CTAButton
label='LOGIN'
isEnabled=true
onClick=this.loginClick.bind(this)
style= marginTop: 30
/>
</View>
<PushNotificationController />
</View>
</KeyboardAwareScrollView>
);
If you check code of constructor you will find many variables and references are used.Still I would love to describe each error , That will helpful to understand
Missing type annotation for props.(for constructor props)
Cannot assign React.createRef() to this.passwordRef because property passwordRef is missing in Login[1]
Cannot assign this.updateInfo.bind(...) to this.updateInfo because property updateInfo is not writable.
Cannot assign new LocalNotification() to this.localNotification because property localNotification is missing in Login[1]
react-native flow
add a comment |
I decided to integrate flow in my project and unable to solve some types errors.i searched a lot but couldn't find what will be the types for below values.
eg.
- Type for references
- type for Props for consturctor
- Type for this.localNotifications(variable)
- How to define type for when we bind method.
I am sharing my code below and with errors I am getting. Thanks in advance
/*** @flow*/
import Component from 'react';
import * as React from 'react';
import
Text,
View,
Image,
TouchableOpacity,
AppState,
Alert,
TextInput
from 'react-native';
import Auth from 'aws-amplify';
import KeyboardAwareScrollView from 'react-native-keyboard-aware-scroll-view';
import PhoneInput from 'react-native-phone-input';
import
StackActions,
NavigationActions,
NavigationScreenProps
from 'react-navigation';
import ProgressDialog from 'react-native-simple-dialogs';
import styles from './Styles';
import FloatingLabelInput, CTAButton from 'Components';
import strings from '../../../utility/locales/i18n';
import AppUtil from 'Library/Utils/AppUtil';
import * as DateUtil from 'Library/Utils/DateUtil';
import R from 'Resources';
import inject, observer from 'mobx-react/native';
import Query from 'react-apollo';
import USER_TYPE, USER_ONBOARDING_STEP from 'Library/Constants';
import * as UserQueries from 'AppSyncQueries/UserQueries';
import LocalNotification from '../../../Components/LocalNotification/LocalNotification';
import PushNotificationController from '../../../Components/LocalNotification/PushNotificationController';
import moment from 'moment';
type Props = NavigationScreenProps & ;
type passwordRef = ;
type State =
userName: string,
password: string,
loading: boolean,
valid: boolean,
shouldLoadProfile: boolean
;
@inject('loginUserStore', 'userAccountStore', 'measurementUnitStore')
@observer
export class Login extends Component<Props, State>
static navigationOptions =
title: strings('login.title'),
header: null
;
constructor(props)
super(props);
this.passwordRef = React.createRef();
this.state =
userName: '',
password: '',
loading: false,
valid: false,
shouldLoadProfile: false,
startProgramDate: this.props.userAccountStore.programStartDate
;
this.updateInfo = this.updateInfo.bind(this);
this.localNotification = new LocalNotification();
this.scheduleLocalNotification = this.scheduleLocalNotification.bind(this);
onChangeText(key: string, value: string)
this.setState( password: value );
updateInfo()
this.setState(
valid: this.phone.isValidNumber()
);
gotoDashboard()
this.props.navigation.dispatch(AppUtil.resetAction('Dashboard', ));
completeNewPassword(user: any)
this.props.navigation.navigate('SetPassword', user: user );
startPasswordReset()
const title = strings('login.password_reset_required_title');
const message = strings('login.password_reset_required_message');
Alert.alert(title, message, [
text: 'Ok',
onPress: () =>
this.props.navigation.navigate('ResetPassword',
userName: this.phone.getValue()
);
]);
render()
return (
<KeyboardAwareScrollView
style= backgroundColor: R.Colors.COLOR_APP_BACKGROUND
scrollEnabled
extraScrollHeight=50
enableResetScrollCoords
resetScrollToCoords= x: 0, y: 0
>
<View style=styles.container>
AppUtil.renderProgressBar(
this.state.loading,
strings('common_message.please_wait')
)
<Image source=R.Images.logo style=styles.appLogo />
<View style=styles.loginContainer>
<TextInput
style= height: 35, color: '#929CA5', fontSize: 14
editable=false
selectTextOnFocus=false
value='Phone Number'
/>
<View style=styles.userName>
<PhoneInput
onPressFlag=this.onPressFlag
ref=ref =>
this.phone = ref;
/>
</View>
<View style= marginTop: 15, marginLeft: 1 >
<FloatingLabelInput
style=styles.textField
secureTextEntry
label='Password'
returnKeyType='done'
ref=this.passwordRef
value=this.state.password
onChangeText=text => this.setState( password: text )
/>
</View>
<View style=styles.forgotPasswordBtnContainer>
<TouchableOpacity onPress=this.gotoForgotPassword.bind(this)>
<Text style=styles.forgotPasswordBtn>Forgot Password?</Text>
</TouchableOpacity>
</View>
<CTAButton
label='LOGIN'
isEnabled=true
onClick=this.loginClick.bind(this)
style= marginTop: 30
/>
</View>
<PushNotificationController />
</View>
</KeyboardAwareScrollView>
);
If you check code of constructor you will find many variables and references are used.Still I would love to describe each error , That will helpful to understand
Missing type annotation for props.(for constructor props)
Cannot assign React.createRef() to this.passwordRef because property passwordRef is missing in Login[1]
Cannot assign this.updateInfo.bind(...) to this.updateInfo because property updateInfo is not writable.
Cannot assign new LocalNotification() to this.localNotification because property localNotification is missing in Login[1]
react-native flow
I decided to integrate flow in my project and unable to solve some types errors.i searched a lot but couldn't find what will be the types for below values.
eg.
- Type for references
- type for Props for consturctor
- Type for this.localNotifications(variable)
- How to define type for when we bind method.
I am sharing my code below and with errors I am getting. Thanks in advance
/*** @flow*/
import Component from 'react';
import * as React from 'react';
import
Text,
View,
Image,
TouchableOpacity,
AppState,
Alert,
TextInput
from 'react-native';
import Auth from 'aws-amplify';
import KeyboardAwareScrollView from 'react-native-keyboard-aware-scroll-view';
import PhoneInput from 'react-native-phone-input';
import
StackActions,
NavigationActions,
NavigationScreenProps
from 'react-navigation';
import ProgressDialog from 'react-native-simple-dialogs';
import styles from './Styles';
import FloatingLabelInput, CTAButton from 'Components';
import strings from '../../../utility/locales/i18n';
import AppUtil from 'Library/Utils/AppUtil';
import * as DateUtil from 'Library/Utils/DateUtil';
import R from 'Resources';
import inject, observer from 'mobx-react/native';
import Query from 'react-apollo';
import USER_TYPE, USER_ONBOARDING_STEP from 'Library/Constants';
import * as UserQueries from 'AppSyncQueries/UserQueries';
import LocalNotification from '../../../Components/LocalNotification/LocalNotification';
import PushNotificationController from '../../../Components/LocalNotification/PushNotificationController';
import moment from 'moment';
type Props = NavigationScreenProps & ;
type passwordRef = ;
type State =
userName: string,
password: string,
loading: boolean,
valid: boolean,
shouldLoadProfile: boolean
;
@inject('loginUserStore', 'userAccountStore', 'measurementUnitStore')
@observer
export class Login extends Component<Props, State>
static navigationOptions =
title: strings('login.title'),
header: null
;
constructor(props)
super(props);
this.passwordRef = React.createRef();
this.state =
userName: '',
password: '',
loading: false,
valid: false,
shouldLoadProfile: false,
startProgramDate: this.props.userAccountStore.programStartDate
;
this.updateInfo = this.updateInfo.bind(this);
this.localNotification = new LocalNotification();
this.scheduleLocalNotification = this.scheduleLocalNotification.bind(this);
onChangeText(key: string, value: string)
this.setState( password: value );
updateInfo()
this.setState(
valid: this.phone.isValidNumber()
);
gotoDashboard()
this.props.navigation.dispatch(AppUtil.resetAction('Dashboard', ));
completeNewPassword(user: any)
this.props.navigation.navigate('SetPassword', user: user );
startPasswordReset()
const title = strings('login.password_reset_required_title');
const message = strings('login.password_reset_required_message');
Alert.alert(title, message, [
text: 'Ok',
onPress: () =>
this.props.navigation.navigate('ResetPassword',
userName: this.phone.getValue()
);
]);
render()
return (
<KeyboardAwareScrollView
style= backgroundColor: R.Colors.COLOR_APP_BACKGROUND
scrollEnabled
extraScrollHeight=50
enableResetScrollCoords
resetScrollToCoords= x: 0, y: 0
>
<View style=styles.container>
AppUtil.renderProgressBar(
this.state.loading,
strings('common_message.please_wait')
)
<Image source=R.Images.logo style=styles.appLogo />
<View style=styles.loginContainer>
<TextInput
style= height: 35, color: '#929CA5', fontSize: 14
editable=false
selectTextOnFocus=false
value='Phone Number'
/>
<View style=styles.userName>
<PhoneInput
onPressFlag=this.onPressFlag
ref=ref =>
this.phone = ref;
/>
</View>
<View style= marginTop: 15, marginLeft: 1 >
<FloatingLabelInput
style=styles.textField
secureTextEntry
label='Password'
returnKeyType='done'
ref=this.passwordRef
value=this.state.password
onChangeText=text => this.setState( password: text )
/>
</View>
<View style=styles.forgotPasswordBtnContainer>
<TouchableOpacity onPress=this.gotoForgotPassword.bind(this)>
<Text style=styles.forgotPasswordBtn>Forgot Password?</Text>
</TouchableOpacity>
</View>
<CTAButton
label='LOGIN'
isEnabled=true
onClick=this.loginClick.bind(this)
style= marginTop: 30
/>
</View>
<PushNotificationController />
</View>
</KeyboardAwareScrollView>
);
If you check code of constructor you will find many variables and references are used.Still I would love to describe each error , That will helpful to understand
Missing type annotation for props.(for constructor props)
Cannot assign React.createRef() to this.passwordRef because property passwordRef is missing in Login[1]
Cannot assign this.updateInfo.bind(...) to this.updateInfo because property updateInfo is not writable.
Cannot assign new LocalNotification() to this.localNotification because property localNotification is missing in Login[1]
react-native flow
react-native flow
asked Mar 27 at 10:18
TarunTarun
1871 gold badge2 silver badges13 bronze badges
1871 gold badge2 silver badges13 bronze badges
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55374784%2funable-to-solve-some-types-error-of-flow-in-react-native%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55374784%2funable-to-solve-some-types-error-of-flow-in-react-native%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown