flutter_tournament_bracket

Creator: coderz1093

Last updated:

0 purchases

TODO
Add to Cart

Description:

flutter tournament bracket

Flutter Tournament Bracket #
Flutter Tournament Bracket is a Flutter widget for displaying tournament brackets in a visually appealing and
interactive way. This package is designed to help you create and display tournament brackets with ease.

🎬 Demo #

🌟 Features #

Display tournament brackets with customizable match cards.
Support for zooming and panning for better visibility.
Customizable colors and dimensions.

🚀 Getting started #
Add the package to your pubspec.yaml file:
dependencies:
flutter_tournament_bracket: <latest_version>
copied to clipboard
Import the package in your Dart code:
import 'package:flutter_tournament_bracket/flutter_tournament_bracket.dart';
copied to clipboard
🛠️ Usage #
Use the TournamentBracket widget to display your tournament:
TournamentBracket(
itemsMarginVertical: 20,
cardHeight: 100,
lineWidth: 220,
card: (match) => CustomMatchCard(match),
list: [
Tournament(matches: [
TournamentMatch(id: "1", teamA: "Real Madrid", teamB: "Barcelona", scoreTeamA: "3", scoreTeamB: "1"),
TournamentMatch(id: "2", teamA: "Chelsea", teamB: "Liverpool", scoreTeamA: "0", scoreTeamB: "1"),
TournamentMatch(id: "3", teamA: "Juventus", teamB: "Paris Saint-Germain", scoreTeamA: "0", scoreTeamB: "2"),
TournamentMatch(id: "4", teamA: "Manchester City", teamB: "Inter Milan", scoreTeamA: "4", scoreTeamB: "2"),
]),
Tournament(matches: [
TournamentMatch(id: "1", teamA: "AC Milan", teamB: "Atletico Madrid", scoreTeamA: "4", scoreTeamB: "0"),
TournamentMatch(id: "2", teamA: "Borussia Dortmund", teamB: "Tottenham Hotspur", scoreTeamA: "2", scoreTeamB: "1"),
]),
Tournament(matches: [
TournamentMatch(id: "1", teamA: "Ajax", teamB: "Sevilla", scoreTeamA: "4", scoreTeamB: "3"),
]),
],
);

copied to clipboard
💡 Example #
Here's a complete example:

import 'package:flutter/material.dart';
import 'package:flutter_tournament_bracket/flutter_tournament_bracket.dart';

// Define tournaments data
final List<Tournament> _tournaments = [
Tournament(matches: [
TournamentMatch(id: "1", teamA: "Real Madrid", teamB: "Barcelona", scoreTeamA: "3", scoreTeamB: "1"),
TournamentMatch(id: "2", teamA: "Chelsea", teamB: "Liverpool", scoreTeamA: "0", scoreTeamB: "1"),
TournamentMatch(id: "3", teamA: "Juventus", teamB: "Paris Saint-Germain", scoreTeamA: "0", scoreTeamB: "2"),
TournamentMatch(id: "4", teamA: "Manchester City", teamB: "Inter Milan", scoreTeamA: "4", scoreTeamB: "2"),
]),
Tournament(matches: [
TournamentMatch(id: "1", teamA: "AC Milan", teamB: "Atletico Madrid", scoreTeamA: "4", scoreTeamB: "0"),
TournamentMatch(id: "2", teamA: "Borussia Dortmund", teamB: "Tottenham Hotspur", scoreTeamA: "2", scoreTeamB: "1"),
]),
Tournament(matches: [
TournamentMatch(id: "1", teamA: "Ajax", teamB: "Sevilla", scoreTeamA: "4", scoreTeamB: "3"),
])
];


void main() {
runApp(const MyApp());
}


/// The main application widget.
class MyApp extends StatelessWidget {
const MyApp({super.key});

@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
useMaterial3: true,
),
home: Scaffold(
body: Center(
child: TournamentBracket(
list: _tournaments,
card: (item) {
return customMatchCard(item);
},
),
),
),
);
}

/// Custom widget to display match details.
Container customMatchCard(TournamentMatch item) {
return Container(
padding: const EdgeInsets.all(12),
decoration: BoxDecoration(
color: Colors.blue, borderRadius: BorderRadius.circular(12)),
child: Row(
crossAxisAlignment: CrossAxisAlignment.center,
mainAxisAlignment: MainAxisAlignment.start,
children: [
Expanded(
child: Column(
mainAxisSize: MainAxisSize.min,
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
overflow: TextOverflow.ellipsis,
maxLines: 1,
item.teamA ?? "No Info",
style: const TextStyle(fontSize: 16, color: Colors.black),
),
const SizedBox(
height: 8,
),
Text(
item.teamB ?? "No Info",
overflow: TextOverflow.ellipsis,
maxLines: 1,
style: const TextStyle(fontSize: 16, color: Colors.black),
)
],
),
),
const VerticalDivider(
color: Colors.black,
),
const SizedBox(
width: 5,
),
Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Text(
overflow: TextOverflow.ellipsis,
maxLines: 1,
item.scoreTeamA ?? "",
style: const TextStyle(fontSize: 16, color: Colors.black),
),
const SizedBox(
height: 8,
),
Text(
overflow: TextOverflow.ellipsis,
maxLines: 1,
item.scoreTeamB ?? "",
style: const TextStyle(
fontSize: 16,
color: Colors.black,
fontWeight: FontWeight.w600),
)
],
),
const SizedBox(
width: 5,
)
],
),
);
}
}

copied to clipboard
🐞 Faced issues? #
If you encounter any problems or you feel the library is missing a feature, please raise a ticket on GitHub and I'll look into it.
📃 License #
MIT License

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files:

Customer Reviews

There are no reviews.