synth 1.0.2
synth: ^1.0.2 copied to clipboard
Creds Synth components for flutter.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:synth/synth.dart';
import 'package:synth_example/pages/home_page.dart';
void main() {
runApp(Synth());
}
class Synth extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
title: 'Synth',
theme: ThemeData(
primarySwatch: Colors.blue,
scaffoldBackgroundColor: primarySynthBlack,
),
home: const Homepage(),
);
}
}