Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: ability to stop all extractors #119

Open
wants to merge 15 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: use generic advancedOptionItemTitle style
  • Loading branch information
dprevost-LMI committed Jan 13, 2025
commit 3d328e3b742efa8845e35694d46f17e7de836906
4 changes: 2 additions & 2 deletions example/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ const AppContainer = () => {
style={styles.pinkButtonImage}
resizeMode="contain"
/>
<Text style={styles.deleteRecordingTitle}>
<Text style={styles.advancedOptionItemTitle}>
{'Delete recorded audio files'}
</Text>
</Pressable>
Expand All @@ -394,7 +394,7 @@ const AppContainer = () => {
style={[styles.pinkButtonImage]}
resizeMode="contain"
/>
<Text style={styles.stopAllRecordingTitle}>
<Text style={styles.advancedOptionItemTitle}>
{'Stop all players and extractors'}
</Text>
</Pressable>
Expand Down
8 changes: 1 addition & 7 deletions example/src/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,20 +110,14 @@ const styles = (params: StyleSheetParams = {}) =>
simformImageContainer: {
alignItems: 'center',
},
deleteRecordingTitle: {
fontSize: scale(20),
fontWeight: 'bold',
color: Colors.pink,
paddingLeft: scale(8),
},
advancedOptionsContainer: {
gap: scale(8),
},
advancedOptionItem: {
alignItems: 'center',
flexDirection: 'row',
},
stopAllRecordingTitle: {
advancedOptionItemTitle: {
fontSize: scale(20),
fontWeight: 'bold',
color: Colors.pink,
Expand Down