tch_common_widgets 0.35.0 copy "tch_common_widgets: ^0.35.0" to clipboard
tch_common_widgets: ^0.35.0 copied to clipboard

Flutter common widgets & theming package used by tomaschyly.

example/lib/main.dart

import 'package:flutter/material.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
      ),
    );
  }
}