Creating Horizontally Scrollable Cards on React Native
import {StyleSheet, Text, View, ScrollView} from 'react-native';
import React from 'react';
const ElevatedCards = () => {
return (
<View>
<Text style={styles.headingText}>ElevatedCards</Text>
<ScrollView horizontal={true} style={st...
dandangol.hashnode.dev1 min read