We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I want to be able to scroll horizontally on mobile and not change the view to a column layout
How can I do that
`const CustomSeed = ({ seed, breakpoint, roundIndex, seedIndex }) => (
const Component = () => ( <Bracket rounds={rounds} roundTitleComponent={(title) => (
The text was updated successfully, but these errors were encountered:
same issue did you find a solution yet ?
Sorry, something went wrong.
Have both of you been successful in getting this to run on mobile?
No ended up using a different library called @g-loot/react-tournament-brackets
No branches or pull requests
I want to be able to scroll horizontally on mobile and not change the view to a column layout
How can I do that
`const CustomSeed = ({ seed, breakpoint, roundIndex, seedIndex }) => (
{seed.teams[0]?.name || 'NO TEAM '}
{seed.teams[1]?.name || 'NO TEAM '}
);
const Component = () => (
<Bracket
rounds={rounds}
roundTitleComponent={(title) => (
)}
renderSeedComponent={CustomSeed}
swipeableProps={{
enableMouseEvents: true,
animateHeight: true,
style: {
padding: '0 50px 0 0',
},
}}
/>
);`
The text was updated successfully, but these errors were encountered: