We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a74c941 commit 7212a77Copy full SHA for 7212a77
1 file changed
src/components/BarVisualizer.tsx
@@ -160,11 +160,7 @@ export const BarVisualizer = ({
160
bars.push(
161
<Animated.View
162
key={index}
163
- style={[
164
- { height: `${coercedPercent}%` },
165
- barStyle,
166
- styles.volumeIndicator,
167
- ]}
+ style={[{ height: `${coercedPercent}%` }, barStyle]}
168
/>
169
);
170
});
@@ -177,9 +173,6 @@ const styles = StyleSheet.create({
177
173
alignItems: 'center',
178
174
justifyContent: 'space-evenly',
179
175
},
180
- volumeIndicator: {
181
- borderRadius: 12,
182
- },
183
176
184
185
export const useBarAnimator = (
0 commit comments