responsive_context 0.1.0 copy "responsive_context: ^0.1.0" to clipboard
responsive_context: ^0.1.0 copied to clipboard

outdated

This is a resposive extension which allow you to spefic screen and screensize in your flutter application. You do not need to remember size width.

example/main.dart

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

main1() {
  return Container(
    child: LayoutBuilder(builder: (ctx, constrain) {
      // return Text("${!constrain.isExtraLarge? "HIDE" : "SHOW"}");
      return Text("${ctx.isExtraLarge}");
    }),
  );
}


main() {
  return Container(
    child: LayoutBuilder(builder: (ctx, constrain) {
      // return Text("${!constrain.isExtraLarge? "HIDE" : "SHOW"}");
      return Text("${constrain.isExtraLarge}");
    }),
  );
}
3
likes
0
pub points
77%
popularity

Publisher

verified publishermylekha.app

This is a resposive extension which allow you to spefic screen and screensize in your flutter application. You do not need to remember size width.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on responsive_context