NativeBase: как центрировать текст внутри тоста? - PullRequest
0 голосов
/ 25 октября 2018

Положение текста по умолчанию, отображаемое тегом Toast NativeBase, находится слева:

enter image description here

ВОПРОС: Как мнецентр "очищенного кэша" текста?

Все эти попытки не дают желаемого центрирования:

    Toast.show
        style: justifyContent: 'center', alignItems: 'center', alignSelf: 'center'
        text: 'cache cleared'
        textStyle: justifyContent: 'center', alignItems: 'center', alignSelf: 'center'

(CoffeeScript)

1 Ответ

0 голосов
/ 01 декабря 2018

Вот как ты это делаешь

Toast.show({
  text: 'Some text',
  position: 'bottom',
  type: 'danger',
  duration: 1000,
  textStyle: {
    textAlign: 'center'
  }
})
...