saffer_widgets 0.0.1 copy "saffer_widgets: ^0.0.1" to clipboard
saffer_widgets: ^0.0.1 copied to clipboard

Easy implementation of daily use widgets.

Generic container

Features #

Gradient container

Getting started #

import file include SafferContainer

Usage #

import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'package:saffer_widgets/saffer_widgets.dart';

import '../controllers/home_controller.dart';

class HomeView extends GetView<HomeController> {
  const HomeView({Key? key}) : super(key: key);
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: const Text('HomeView'),
        centerTitle: true,
      ),
      body: const Center(
        child: SafferContainer(
          color1: Colors.red,
          color2: Colors.black,
          title: "This is title",
          subtitle: "This is subtitle",
        ),
      ),
    );
  }
}

Additional information #

0
likes
120
points
13
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

Easy implementation of daily use widgets.

Homepage

License

unknown (license)

Dependencies

flutter

More

Packages that depend on saffer_widgets