adaptivex 0.0.1+1 copy "adaptivex: ^0.0.1+1" to clipboard
adaptivex: ^0.0.1+1 copied to clipboard

outdated

This package allow you to build the widget based on width (screen) size or platform

example/lib/main.dart

import 'package:adaptivex/adaptivex.dart';
import 'package:example/my_cupertino_app.dart';
import 'package:example/my_macos_app.dart';
import 'package:example/my_material_app.dart';
import 'package:example/my_web_app.dart';
import 'package:example/my_window_app.dart';
import 'package:flutter/material.dart';

void main() {
  runApp(
    const AdaptivePlatformWidget(
      child: MyMaterialApp(),
      ios: MyCupertinoApp(),
      macos: MyMacosApp(),
      web: MyWebApp(),
      window: MyWindowApp(),
    ),
  );
}
11
likes
0
pub points
76%
popularity

Publisher

verified publishermylekha.app

This package allow you to build the widget based on width (screen) size or platform

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on adaptivex