This file contains hidden or 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
import { RouteComponentProps } from '@reach/router'; | |
/** @jsx jsx */ import { jsx } from '@emotion/core'; | |
import React, { useCallback, useRef, useState } from 'react'; | |
import { css } from '@emotion/core'; | |
import { Desktop, Phone } from '../rcomps'; | |
import { Dimensions } from '../epop-react-ui/helpers'; | |
interface Props extends RouteComponentProps {} | |
const stylesPhone = { |
This file contains hidden or 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
<android.support.design.widget.TextInputLayout | |
android:id="@+id/settings_weight_input" | |
android:layout_width="@dimen/edit_text" | |
android:layout_height="wrap_content" | |
android:animateLayoutChanges="true" | |
android:layout_alignParentLeft="true"> | |
<android.support.design.widget.TextInputEditText | |
android:id="@+id/settings_weight_edt" | |
android:layout_height="match_parent" | |
android:layout_width="match_parent" |