我有 2 个文本输入,每个都带有 flex: 1。当我关注其中一个时,我将其放大-> flex: 1 -> flex: 2。
谁能给我一个如何为这个宽度变化添加动画的例子?
<TextInput style={{flex: 1'}} onFocus={() => this.makeBigger()}/>
<TextInput style={{flex: 1'}}/>
// the makeBigger will make the style look like this:
<TextInput style={{flex: 2'}} onFocus={() => this.makeBigger()}/>
<TextInput style={{flex: 1'}}/>