semicircle_indicator 1.1.1 copy "semicircle_indicator: ^1.1.1" to clipboard
semicircle_indicator: ^1.1.1 copied to clipboard

a semicircle indicator

example/lib/main.dart

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

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

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const MyHomePage(title: 'Flutter Demo Home Page'),
    );
  }
}

class MyHomePage extends StatelessWidget {
  const MyHomePage({Key? key, required this.title}) : super(key: key);

  final String title;

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Center(
        child: SingleChildScrollView(
          child: Column(
            mainAxisAlignment: MainAxisAlignment.center,
            children: [
              const SizedBox(
                height: 100,
                width: double.infinity,
              ),
              const SemicircularIndicator(
                color: Colors.orange,
                bottomPadding: 0,
                child: Text(
                  '75%',
                  style: TextStyle(
                      fontSize: 32,
                      fontWeight: FontWeight.w600,
                      color: Colors.orange),
                ),
              ),
              const SizedBox(height: 50),
              const SemicircularIndicator(
                strokeCap: StrokeCap.square,
                color: Colors.blueAccent,
                bottomPadding: 0,
                child: Text(
                  '75%',
                  style: TextStyle(
                      fontSize: 32,
                      fontWeight: FontWeight.w600,
                      color: Colors.blueAccent),
                ),
              ),
              const SizedBox(height: 50),
              const SemicircularIndicator(
                radius: 100,
                color: Colors.yellow,
                backgroundColor: Colors.orange,
                strokeWidth: 13,
                bottomPadding: 0,
                child: Text(
                  '75%',
                  style: TextStyle(
                      fontSize: 32,
                      fontWeight: FontWeight.w600,
                      color: Colors.orange),
                ),
              ),
              const SizedBox(height: 50),
              Container(
                height: 40,
                width: double.infinity,
                color: Colors.grey,
              ),
              const SemicircularIndicator(
                radius: 100,
                color: Colors.yellow,
                backgroundColor: Colors.orange,
                strokeWidth: 13,
                bottomPadding: 0,
                child: Text(
                  '75%',
                  style: TextStyle(
                      fontSize: 32,
                      fontWeight: FontWeight.w600,
                      color: Colors.orange),
                ),
              ),
              Container(
                height: 40,
                width: double.infinity,
                color: Colors.grey,
              ),
              const SemicircularIndicator(
                radius: 100,
                color: Colors.yellow,
                backgroundColor: Colors.orange,
                strokeWidth: 13,
                bottomPadding: 0,
                contain: true,
                child: Text(
                  '75%',
                  style: TextStyle(
                      fontSize: 32,
                      fontWeight: FontWeight.w600,
                      color: Colors.orange),
                ),
              ),
              Container(
                height: 40,
                width: double.infinity,
                color: Colors.grey,
              ),
              const SizedBox(height: 400),
            ],
          ),
        ),
      ),
    );
  }
}
11
likes
130
pub points
88%
popularity

Publisher

unverified uploader

a semicircle indicator

Repository (GitHub)
View/report issues

Documentation

API reference

License

GPL-3.0 (LICENSE)

Dependencies

flutter

More

Packages that depend on semicircle_indicator