Skip to content

Instantly share code, notes, and snippets.

View shineklbm's full-sized avatar
🎯
Focusing

Shine Sudarsanan shineklbm

🎯
Focusing
  • Trivandrum, Kerala, India
View GitHub Profile
@shineklbm
shineklbm / main.dart
Last active March 3, 2021 02:01
Circles with Guesture Detector
import 'package:flutter/material.dart';
import 'dart:math';
void main() {
runApp(MaterialApp(home: RectsExample()));
}
class RectsExample extends StatefulWidget {
@override
_RectsExampleState createState() => _RectsExampleState();