Skip to content

Instantly share code, notes, and snippets.

@topherPedersen
Created April 7, 2024 20:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save topherPedersen/2eee51c699550c53483b055cfd371b21 to your computer and use it in GitHub Desktop.
Save topherPedersen/2eee51c699550c53483b055cfd371b21 to your computer and use it in GitHub Desktop.
React-Native Timeline Component Built with CSS (Prototype/Example)
import React from 'react';
import {
SafeAreaView, View,
} from 'react-native';
function App(): React.JSX.Element {
return (
<SafeAreaView style={{ flex: 1 }}>
<View>
<View style={{ flexDirection: 'row' }}>
<View style={{ flexDirection: 'column', flex: 2, backgroundColor: 'white', alignItems: 'center' }}>
{/* Actual "Line" which makes up the Timeline */}
<View style={{ zIndex: 2000, flexGrow: 1, width: 2, backgroundColor: 'grey' }}></View>
{/* Container for Timeline "Dot" */}
<View style={{ zIndex: 1000, position: 'absolute', width: '100%', height: '100%', backgroundColor: 'white', justifyContent: 'center', alignItems: 'center' }}>
{/* Actual "Dot" on the Timeline */}
<View style={{ height: 10, width: 10, backgroundColor: 'grey', borderRadius: 50 }}></View>
</View>
</View>
<View style={{ flex: 8, backgroundColor: 'blue', height: 100 }}></View>
</View>
<View style={{ flexDirection: 'row' }}>
<View style={{ flexDirection: 'column', flex: 2, backgroundColor: 'white', alignItems: 'center' }}>
{/* Actual "Line" which makes up the Timeline */}
<View style={{ zIndex: 2000, flexGrow: 1, width: 2, backgroundColor: 'grey' }}></View>
{/* Container for Timeline "Dot" */}
<View style={{ zIndex: 1000, position: 'absolute', width: '100%', height: '100%', backgroundColor: 'white', justifyContent: 'center', alignItems: 'center' }}>
{/* Actual "Dot" on the Timeline */}
<View style={{ height: 10, width: 10, backgroundColor: 'grey', borderRadius: 50 }}></View>
</View>
</View>
<View style={{ flex: 8, backgroundColor: 'red', height: 200 }}></View>
</View>
<View style={{ flexDirection: 'row' }}>
<View style={{ flexDirection: 'column', flex: 2, backgroundColor: 'white', alignItems: 'center' }}>
{/* Actual "Line" which makes up the Timeline */}
<View style={{ zIndex: 2000, flexGrow: 1, width: 2, backgroundColor: 'grey' }}></View>
{/* Container for Timeline "Dot" */}
<View style={{ zIndex: 1000, position: 'absolute', width: '100%', height: '100%', backgroundColor: 'white', justifyContent: 'center', alignItems: 'center' }}>
{/* Actual "Dot" on the Timeline */}
<View style={{ height: 10, width: 10, backgroundColor: 'grey', borderRadius: 50 }}></View>
</View>
</View>
<View style={{ flex: 8, backgroundColor: 'blue', height: 100 }}></View>
</View>
<View style={{ flexDirection: 'row' }}>
<View style={{ flexDirection: 'column', flex: 2, backgroundColor: 'white', alignItems: 'center' }}>
{/* Actual "Line" which makes up the Timeline */}
<View style={{ zIndex: 2000, flexGrow: 1, width: 2, backgroundColor: 'grey' }}></View>
{/* Container for Timeline "Dot" */}
<View style={{ zIndex: 1000, position: 'absolute', width: '100%', height: '100%', backgroundColor: 'white', justifyContent: 'center', alignItems: 'center' }}>
{/* Actual "Dot" on the Timeline */}
<View style={{ height: 10, width: 10, backgroundColor: 'grey', borderRadius: 50 }}></View>
</View>
</View>
<View style={{ flex: 8, backgroundColor: 'red', height: 200 }}></View>
</View>
</View>
</SafeAreaView>
);
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment