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

outdated

A new Flutter package to pay bill with Pay unit system.

payunitpackage #

A new Flutter package.

Getting Started #

This project is a starting point for a Dart package, a library module containing code that can be shared easily across multiple Flutter or Dart projects.

For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.

Example #

import 'package:eneopayappskeletteforsdk/PayButton.dart';
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:styled_widget/styled_widget.dart';

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

class App extends StatelessWidget {
  @override
  Widget build(BuildContext context) => MaterialApp(
        home: Scaffold(
          body: Home(),
        ),
      );
}

class Home extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Column(
      mainAxisAlignment: MainAxisAlignment.spaceEvenly,
      crossAxisAlignment: CrossAxisAlignment.center,
      children: <Widget>[
        Padding(
          padding: EdgeInsets.only(left: 30, right: 30),
          child: PayButton(text: "Payer"),
        )
      ],
    ).padding(vertical: 80).alignment(Alignment.topCenter);
  }
}
0
likes
10
pub points
0%
popularity

Publisher

unverified uploader

A new Flutter package to pay bill with Pay unit system.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

cupertino_icons, flutter, simple_animations, styled_widget

More

Packages that depend on payunitpackage