tecfy_basic_package 0.1.13 copy "tecfy_basic_package: ^0.1.13" to clipboard
tecfy_basic_package: ^0.1.13 copied to clipboard

outdated

Package includes all components and services used on most applications.

example/lib/main.dart

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

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'My Application',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: MyHomePage(title: 'My Application'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  MyHomePage({Key key, this.title}) : super(key: key);
  final String title;

  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Center(
        child: Column(
          children: <Widget>[
            AppButtonIconText(
              icon: Icon(Icons.add),
              label: 'Add Button'
            )
          ],
        ),
      ),
    );
  }

}
3
likes
0
pub points
75%
popularity

Publisher

verified publishertecfy.co

Package includes all components and services used on most applications.

Homepage

License

unknown (LICENSE)

Dependencies

cached_network_image, flutter, http, http_parser, image_picker, intl, path, path_provider, shared_preferences

More

Packages that depend on tecfy_basic_package