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

Responsive kit is a flutter library which simplifies/assists in creating responsive UI in Flutter.

example/lib/main.dart

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

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  MyApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Responsive Kit: Test Project',
      debugShowCheckedModeBanner: false,
      theme: ThemeData(primarySwatch: Colors.blue),
      home: MyHomePage(title: 'Responsive Kit: Test Project'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  MyHomePage({Key? key, required this.title}) : super(key: key);
  final String title;

  @override
  State<MyHomePage> createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  double sliderValue = 1.0;
  late double tempHeight;
  late double tempWidth;
  @override
  Widget build(BuildContext context) {
    SizeConfig().init(context, MediaQuery.of(context).size.height,
        MediaQuery.of(context).size.width);

    /* tempHeight = SizeConfig.screenHeight * 0.1 * (sliderValue);
    tempWidth = SizeConfig.screenWidth * 0.1 * (sliderValue); */

    tempHeight =
        SizeConfig().getMyDynamicHeight(MediaQuery.of(context).size.height) *
            0.1 *
            (sliderValue);
    tempWidth =
        SizeConfig().getMyDynamicWidth(MediaQuery.of(context).size.width) *
            0.1 *
            (sliderValue);
    /* print('height :  $tempHeight');
    print('width :  $tempWidth'); */

    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Center(
          child: Column(
        mainAxisAlignment: MainAxisAlignment.center,
        children: [
          Stack(
            alignment: AlignmentDirectional.center,
            children: [
              SizedBox(
                height: SizeConfig.screenHeight * 0.8,
              ),
              Container(
                height: tempHeight,
                width: tempWidth,
                color: Colors.black38,
                child: Container(
                  margin: EdgeInsets.symmetric(
                    horizontal: SizeConfig().getMyDynamicWidth(20),
                    vertical: SizeConfig().getMyDynamicHeight(20),
                  ),
                  color: Colors.blue.shade400,
                  child: Container(
                    margin: EdgeInsets.symmetric(
                      horizontal: SizeConfig().getMyDynamicWidth(30),
                      vertical: SizeConfig().getMyDynamicHeight(30),
                    ),
                    decoration: const BoxDecoration(
                        color: Colors.white, shape: BoxShape.circle),
                  ),
                ),
              ),
            ],
          ),
          Slider.adaptive(
              value: sliderValue,
              label: sliderValue.toString(),
              min: 1,
              max: 7,
              onChanged: (newValue) => setState(() => sliderValue = newValue)),
        ],
      )),
    );
  }
}
4
likes
0
pub points
55%
popularity

Publisher

unverified uploader

Responsive kit is a flutter library which simplifies/assists in creating responsive UI in Flutter.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on responsive_kit