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

Create apps faster with ready to use widgets such as Page Navigation with nav bar, Buttons and more.

example/lib/main.dart

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

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

class MyApp extends StatelessWidget {
  final List<Widget> pages = [
    MyHomePage(title: 'Page 1'),
    ButtonPage(),
    ButtonThree()
  ];
  final List<BottomNavigationBarItem> itemList = [
    BottomNavigationBarItem(icon: Icon(Icons.home), label: 'Page1'),
    BottomNavigationBarItem(icon: Icon(Icons.favorite), label: 'Page 2'),
    BottomNavigationBarItem(icon: Icon(Icons.bathtub), label: 'Page 3')
  ];
  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
        title: 'Flutter Demo',
        theme: ThemeData(
          primarySwatch: Colors.blue,
        ),
        home: NavBar(
          currentIndex: 0,
          pages: pages,
          navbarIcons: itemList,
        ));
  }
}

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

  final String title;

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

class _MyHomePageState extends State<MyHomePage> {
  int _counter = 0;

  void _incrementCounter() {
    setState(() {
      _counter++;
    });
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
            Text(
              'You have pushed the button this many times:',
            ),
            Text(
              '$_counter',
              style: Theme.of(context).textTheme.headline4,
            ),
          ],
        ),
      ),
      floatingActionButton: FloatingActionButton(
        onPressed: _incrementCounter,
        tooltip: 'Increment',
        child: Icon(Icons.add),
      ),
    );
  }
}

class ButtonPage extends StatefulWidget {
  const ButtonPage({Key? key}) : super(key: key);

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

class _ButtonPageState extends State<ButtonPage> {
  String month = Premade().monthName(5);

  @override
  Widget build(BuildContext context) {
    return Column(
      mainAxisAlignment: MainAxisAlignment.center,
      crossAxisAlignment: CrossAxisAlignment.center,
      children: [
      TapChangeButton(
        beforeTap: 'Hit Me!',
        afterTap: "You're Strong",
      ),
      Text('The 5th month of year is Premade().monthName(5): $month')
    ]);
  }
}

class ButtonThree extends StatelessWidget {
  const ButtonThree({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return 
      Center(
        child: PowerTile(
          title: 'This is the title',
          line2: 'This is the description',
          line3: 'This is the third line(optional',
        ),
    
    );
  }
}
2
likes
120
pub points
0%
popularity

Publisher

unverified uploader

Create apps faster with ready to use widgets such as Page Navigation with nav bar, Buttons and more.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on premade_widgets