basf_logic_components 1.0.8 copy "basf_logic_components: ^1.0.8" to clipboard
basf_logic_components: ^1.0.8 copied to clipboard

BASF logic components

example/lib/main.dart

import 'package:flutter/material.dart';

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

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
        useMaterial3: true,
      ),
      home: const Scaffold(
        body: SizedBox(),
      ),
    );
  }
}