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

Rifcare Query is the Media Query Class which you can use anywhere in your project

example/main.dart

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


class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      home: ExampleApp(),
    );
  }
}


class ExampleApp extends StatelessWidget {
  const ExampleApp({super.key});

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Column(
        children: [
          ///Container with Media Query
          Container(
            color: Colors.red,
            width: RifcareQuery.width(context),
            height: RifcareQuery.height(context)*5,
          ),
        ],
      ),
    );
  }
}
3
likes
0
points
65
downloads

Publisher

unverified uploader

Weekly Downloads

Rifcare Query is the Media Query Class which you can use anywhere in your project

Homepage

License

unknown (license)

Dependencies

flutter

More

Packages that depend on rifcare_query