StyleSheet — 스타일 객체
CSS와 비슷하지만 다른 점 (2/2)
const styles = StyleSheet.create({
card: {
backgroundColor: '#fff',
borderRadius: 12,
padding: 16,
marginBottom: 12,
shadowColor: '#000',
shadowOffset: { width: 0, height: 2 },
shadowOpacity: 0.1,
elevation: 3,
},
title: { fontSize: 18, fontWeight: 'bold' },
description: { fontSize: 14, color: '#666' },
});