dealing-with-react-native icon indicating copy to clipboard operation
dealing-with-react-native copied to clipboard

9.4.1 PostCard 컴포넌트 만들기 오타

Open github-denver opened this issue 1 year ago • 0 comments

components/PostCard.js

return (
  <View style={styles.block}>
    <View style={[styles.head, styles.paddingBlock]}>
      <Pressable style={styles.profile} onPress={onOpenProfile}>
          source={
            user.photoURL
              ? {
                  uri: user.photoURL,
                }
              : require("../assets/user.png")
          }
          resizeMode="cover"
          style={styles.avatar}
        />
        ...
      </Pressable>
    </View>
    ...

책에는 <Avatar> 컴포넌트가 없습니다.

확인 부탁드립니다 :)

p516

github-denver avatar Mar 08 '23 12:03 github-denver