【React Native】Base64文字列を画像で表示する
465 ワード
Imageタグのsource属性にBase64文字列を指定したかった時に少し迷ったのでメモ
export default class App extends React.Component {
state = {
base64Str: "data:image/png;base64,R0l..."
}
render() {
return (
<View>
<Image source={{uri: `${this.state.base64Str}`}} />
</View>
);
}
}
Author And Source
この問題について(【React Native】Base64文字列を画像で表示する), 我々は、より多くの情報をここで見つけました https://qiita.com/pato2ryon/items/28419b9c9d76f3a9eef2著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .