shammo 4.1.4 copy "shammo: ^4.1.4" to clipboard
shammo: ^4.1.4 copied to clipboard

Shammo is a utility library that has a lot of functions for simple the app development circle of a Flutter developer.

example/main.dart

import 'package:flutter/material.dart';
import 'package:shammo/shammo.dart';

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

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: PostCard(
          title: Text("Seth's Post"),
          action: IconButton(
            icon: Icon(Icons.more_vert),
            onPressed: () {},
          ),
          content: Text("Seth is awesome"),
          avatar: CircleAvatar(
            backgroundImage: NetworkImage("https://seth.com/dp"),
          ),
          actions: [
            IconButton(onPressed: () {}, icon: Icon(Icons.thumb_up)),
            IconButton(
              icon: Icon(Icons.comment),
              onPressed: () {},
            )
          ]),
    );
  }
}
1
likes
80
points
131
downloads

Publisher

unverified uploader

Weekly Downloads

Shammo is a utility library that has a lot of functions for simple the app development circle of a Flutter developer.

Repository (GitHub)

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter

More

Packages that depend on shammo