React Native - CSS : 테두리 없는 마지막 자녀? React Native에는 다음과 같은 스택형 행에 매핑하여 출력하는 정적 배열의 책이 있습니다. return books.map((book, i) => { return( {book.title} ); }); 또한 각 책에는 아래 테두리가 있습니다.styles.book: book: { borderBottomWidth: 1, borderBottomColor: '#000000' } 목록의 마지막 책에 밑줄이 없어야 하니까 신청해야 해요.borderBottomWidth: 0내 생각엔?React Native에서 목록의 마지막 책에 맨 아래 테두리가 없도록 하려면 어떻게 해야 합니까?(일반적인 css에서는 last-child를 사용합니다)이것은, 다음의..