flutter_cross_platform 0.1.4 copy "flutter_cross_platform: ^0.1.4" to clipboard
flutter_cross_platform: ^0.1.4 copied to clipboard

discontinued

The Cross Platform provides mixins to simple decide which widget should be built.

Cross Platform #

The Cross Platform provides mixins to simple decide which widget should be built. For example, we need some widget looks in one way on devices and other way on web. Or we need to include/exclude (svg, hover, ...) some widgets on web platform.

Usage #

PlatformSplitMixin

Allows to split widget into 'device' and 'web' variants

class PlatformSplitted 
  extends StatelessWidget 
  with PlatformSplitMixin {

  @override
  Widget build(BuildContext context) {
    // You can pass any data to each variant builder

    // will return green container with platform specific text
    return platformVariant(context, data: Colors.green);
  }

  @override
  Widget device(context, {data}) {
    return Container(
      color: data as Color,
      child: Center(
        child: Text("I'm device variant")
      ),
    );
  }

  @override
  Widget web(context, {data}) {
    final color = data as Color;
    return Container(
      color: color,
      child: Center(
        child: Text("I'm web variant")
      ),
    );
  }
}

PlatformSplitSingletonMixin

Similar to previous mixin but initialize variants only once. Useful, for example, to override navigation.

class MyApplication
  extends StatelessWidget
  with PlatformSplitSingletonMixin {

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: "MyApplication",
      builder: (context, child) {

        // Initialise singletons outside widgets
        // So they will not rebuild
        initPlatforms(context);
        return platformVariant;
      },
    );
  }

  @override
  Navigator web(context) {
    return Navigator();
  }

  @override
  Navigator device(context) {
    return Navigator();
  }
}
0
likes
40
pub points
0%
popularity

Publisher

verified publisherdart.nogipx.ru

The Cross Platform provides mixins to simple decide which widget should be built.

Repository (GitLab)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter, responsive_builder

More

Packages that depend on flutter_cross_platform