flexBox justify-content flex-end

以 flex-direction: row 为参考。

flex-end:主轴结束点对齐。

1.Web

flex-direction: row;
justify-content: flex-end;

B623E2D3-5CDC-4B87-B383-7BB38D482CE0

2.React Native

flexDirection: 'row',
justifyContent: 'flex-end',

45F5F9C1-80BF-4537-B2A8-1A5BFBA7094A

3.微信小程序

flex-direction: row;
justify-content: flex-end;

693406D2-EDC2-4E55-8758-16B3F2254B92