velocity_x 0.3.0 copy "velocity_x: ^0.3.0" to clipboard
velocity_x: ^0.3.0 copied to clipboard

outdated

A minimalist Flutter framework for rapidly building custom designs.

example/lib/main.dart

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

void main() => runApp(MaterialApp(
      home: Demo(),
      debugShowCheckedModeBanner: false,
    ));

class Demo extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Material(
      color: Vx.teal500,
      child: VStack(
        [
          VxDevice(
              mobile: "Mobile"
                  .text
                  .xl6
                  .textStyle(context.textTheme.caption)
                  .italic
                  .center
                  .make()
                  .centered()
                  .box
                  .rounded
                  .teal500
                  .neumorphic()
                  .make()
                  .whHalf(context),
              web: "Web"
                  .text
                  .white
                  .xl4
                  .bold
                  .center
                  .makeCentered()
                  .animatedBox
                  .bounceIn
                  .rounded
                  .teal500
                  .neumorphic()
                  .make()
                  .whHalf(context)),
          20.heightBox,
          "Velocity"
              .richText
              .withTextSpanChildren(["X".textSpan.red400.make()])
              .xl4
              .white
              .make()
        ],
        alignment: MainAxisAlignment.center,
        crossAlignment: CrossAxisAlignment.center,
      ).p16().scrollVertical(),
    );
  }
}
1352
likes
0
pub points
98%
popularity

Publisher

verified publishercodepur.dev

A minimalist Flutter framework for rapidly building custom designs.

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

auto_size_text, flutter

More

Packages that depend on velocity_x