在文本后对原生{textAlign:'justify'}伪造空间做出反应

时间:2020-10-20 09:40:41

标签: javascript reactjs react-native expo

我有问题,我的文字下方没有空格

enter image description here

listInformations是一个字符串数组。

我检查了一下,本段最后一句之后没有空格。

我添加了绿色backgroundColor给您看。

listInformations.map((item: any, index: any) => {
    return (
        <View style={{ marginVertical: 2 }} key={index.toString()}>
            <Text style={{textAlign: 'justify', backgroundColor:"green"}}>{item}</Text>
        </View>
    );
})

2 个答案:

答案 0 :(得分:2)

请确保listInformations数组的相应文本值以“ minime。”结尾,没有其他特殊字符,例如“ \ n”。

答案 1 :(得分:2)

您可以尝试修剪文本。

package webapp;

import java.sql.Driver;

import org.openqa.selenium.*;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;

public class app {

public static void main(String[] args) {
// TODO Auto-generated method stub

System.setProperty("webdriver.chrome.driver","/home/ajay/Documents/chromedriver");
WebDriver driver = new ChromeDriver();

driver.get("https://www.edureka.co/blog/selenium-installation/");
        
System.out.println("Hlinux"
        +"ello");
    }

}