cricket_run_map 0.0.1 copy "cricket_run_map: ^0.0.1" to clipboard
cricket_run_map: ^0.0.1 copied to clipboard

An Awesome Flutter package to create a Wagon Wheel / Run Map widget for Cricket applications.

example/lib/main.dart

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

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

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Cricket Run Map',
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
        useMaterial3: true,
      ),
      debugShowCheckedModeBanner: false,
      home: Scaffold(
        backgroundColor: Colors.white,
        body: Container(
          width: MediaQuery.of(context).size.width,
          height: MediaQuery.of(context).size.height,
          alignment: Alignment.center,
          child: const CricketRunMap(
            width: 350,
            height: 350,
            leftSide: Text("OFF", style: TextStyle(fontSize: 15, fontWeight: FontWeight.w500, color: Colors.white)),
            rightSide: Text("LEG", style: TextStyle(fontSize: 15, fontWeight: FontWeight.w500, color: Colors.white)),
            positionNames: [
              'Deep Mid\nWicket',
              'Long On',
              'Long Off',
              'Deep Cover',
              'Deep Point',
              'Third Man',
              'Deep\nFine Leg',
              'Deep\nSquare Leg',
            ],
          ),
        ),
      ),
    );
  }
}
1
likes
130
pub points
14%
popularity

Publisher

unverified uploader

An Awesome Flutter package to create a Wagon Wheel / Run Map widget for Cricket applications.

Repository (GitHub)
View/report issues

Documentation

API reference

License

unknown (license)

Dependencies

flutter

More

Packages that depend on cricket_run_map