flutter_semi_circle
A new Semi Circle
Start
A Flutter package for iOS and Android for generating semi circles.
Feedback and Pull Requests are most welcome!
Installation
Add to pubspec.yaml.
dependencies:
...
flutter_semi_circle: ^1.0.0
Usage Example
import circle_floating_button.dart
import 'package:flutter_semi_circle/flutter_semi_circle.dart';
Samples
FlutterSemiCircle(
height: 180,
width: 180,
thickness: 25,
backgroundColor: Colors.blue.shade100,
foregroundColor: const Color.fromARGB(255, 22, 64, 98),
totalValue: 100,
currentValue: 75,
child: const Column(
mainAxisAlignment: MainAxisAlignment.end,
children: [
Text(
'\$100.00',
style: TextStyle(fontWeight: FontWeight.bold),
),
SizedBox(
height: 2,
),
Text(
'Spent',
style: TextStyle(fontWeight: FontWeight.w300),
),
],
),
),