Skip to content

Instantly share code, notes, and snippets.

View CharlVS's full-sized avatar
😎
LGTM

Charl (Nitride) CharlVS

😎
LGTM
View GitHub Profile
@CharlVS
CharlVS / main.dart
Created May 26, 2024 09:51
Custom Dart Charts
import 'package:flutter/material.dart';
import 'dart:math';
import 'dart:async';
void main() {
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({super.key});