Skip to content

Instantly share code, notes, and snippets.

View gmaggio's full-sized avatar

Giraldi Maggio gmaggio

View GitHub Profile
@Barttje
Barttje / rotating-arcs.dart
Last active January 16, 2023 11:02
Rotating arcs with a GestureDetector and CustomPainter
import 'package:flutter/material.dart';
import 'dart:math' as math;
void main() {
runApp(const ExampleApp());
}
class ExampleApp extends StatelessWidget {
const ExampleApp({Key? key}) : super(key: key);