basepack 0.1.1 copy "basepack: ^0.1.1" to clipboard
basepack: ^0.1.1 copied to clipboard

Custom made widgets for Flutter apps as the current widgets are kinda boring. This is a personal package.

example/lib/main.dart

import 'package:example/buttons.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: 'Basepack Example',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: ButtonScreen(),
    );
  }
  // check out ButtonScreen() in buttons.dart
}
0
likes
120
pub points
0%
popularity

Publisher

verified publisheraravi.me

Custom made widgets for Flutter apps as the current widgets are kinda boring. This is a personal package.

Homepage

Documentation

API reference

License

GPL-3.0 (LICENSE)

Dependencies

flutter

More

Packages that depend on basepack