React-native: textAlign: 'right' 在样式上没有正确地应用。

11 浏览
0 Comments

React-native: textAlign: 'right' 在样式上没有正确地应用。

我对react-native css-styling还很陌生,以下是我的代码:

{question.view_count + " views\t" + question.comment_count}

{question.comment_count > 1 || question.comment_count == 0

? " comments"

: " comment"}

{question.solution_count > 0

? question.solution_count + " solutions"

: " Solve this"}

;

问题是第二个"textAlign: 'right'"不起作用 - 文本仍然在左侧。我希望文本在同一行,但(显然)第二个文本对象在右侧。有什么提示吗?谢谢!

编辑

输出如下:

Screenshot

0