2017-03-21 12 views
-1

flex displayを使用して2つのボタンを分離したいと考えています。`flex display 'を使って2つのボタンを分離する方法。

今、私はreactを使用しています。

const style = { 
     textAreaStyle: { 
     width:'700' 
     }, 
     buttonFatherStyle:{ 
     display:'flex', 
     display:"-webkit-flex", 
     flexWrap: 'wrap', 
     justifyContent:'around', 
     backgroundColor:'red', 
     } 
    } 

jsx

  <div style={style.buttonFatherStyle}> 
      <FlatButton style={{backgroundColor:'blue'}} type="submit" disabled={pristine || submitting}> submit </FlatButton> 
      <FlatButton style={{backgroundColor:'green'}} type="button" disabled={pristine || submitting} onClick={reset}> Clear 
      </FlatButton> 
      </div> 

私のコードは動作しません。あなたは試してみてください

facebook.github.io/react-native/docs/flexbox.html 

justifyContent: 'space-between' 

あなたはあまりにもmarginRightとmarginLeftで遊ぶことができます

+1

あなたは 'justifyContent: 'space-between''を試してみませんか? –

+1

フレックスレイアウトに関するすべての情報はhttps://facebook.github.io/react-native/docs/flexbox.htmlで読むことができます。余裕を持たせることもできます(例:marginLeft:20、marginRight:20) –

+0

'justifyContent: 'space-between''または' space-around'のどちらも問題なく動作します。いずれかがOKです。 – jiexishede

答えて

0

を試してみてください。 希望を助けてください

0

は、このコードのドキュメントとして

flatbutton { 
    flex-basis: 50%; 
    text-align: center; 
} 
+0

あなたの答えは素晴らしいです。 – jiexishede

+0

あなたを助けてくれてうれしい – Amal

関連する問題