feedback_page 0.0.2 copy "feedback_page: ^0.0.2" to clipboard
feedback_page: ^0.0.2 copied to clipboard

A new Flutter package for add feedback page to your application.

example/lib/main.dart

import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:feedback_page/feedback_page.dart';

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

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    var value = 0;
    return MaterialApp(
      title: 'Flutter Example',
      theme: ThemeData(
        primarySwatch: Colors.blue,
        visualDensity: VisualDensity.adaptivePlatformDensity,
      ),
      home: First(),
    );
  }
}

class First extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Center(
        child: RaisedButton(
          onPressed: () {
            Navigator.push(
                context, MaterialPageRoute(builder: (context) => Second()));
          },
          child: Text('FeedBack Page'),
        ),
      ),
    );
  }
}

class Second extends StatefulWidget {
  @override
  _SecondState createState() => _SecondState();
}

class _SecondState extends State<Second> {
  List<String> list = [
    'assets/images/sad.png',
    'assets/images/mid.png',
    'assets/images/happy.png',
  ];

  @override
  Widget build(BuildContext context) {
    var myValue = 0.0;

    return FeedbackPage(
      percentCallback: (value) {
        myValue = value;
      },
      imgPath: list,
      backgroundColor: Colors.teal,
      closeIcon: Icons.close,
      closeIconOnPress: () {
        print('close clicked');
        print(myValue);
      },
      btnChild: Text(
        'Done',
        style: TextStyle(color: Colors.white),
      ),
      mainTitle: 'What is your feedback ?!',
      maxValueWidget: Container(
        width: 50,
        height: 50,
        decoration: BoxDecoration(
            color: Colors.black,
            borderRadius: BorderRadius.all(Radius.circular(30))),
        child: Center(
          child: Text(
            'Good',
            style: TextStyle(color: Colors.white, fontWeight: FontWeight.bold),
          ),
        ),
      ),
      btnOnPress: () {
        Navigator.pop(context);
      },
      minValueWidget: Container(
        width: 50,
        height: 50,
        decoration: BoxDecoration(
            color: Colors.black,
            borderRadius: BorderRadius.all(Radius.circular(30))),
        child: Center(
          child: Text(
            'Bad',
            style: TextStyle(color: Colors.white, fontWeight: FontWeight.bold),
          ),
        ),
      ),
      defaultSliderValue: 0,
    );
  }
}
0
likes
40
pub points
0%
popularity

Publisher

unverified uploader

A new Flutter package for add feedback page to your application.

Repository (GitHub)
View/report issues

License

BSD-2-Clause (LICENSE)

Dependencies

flutter

More

Packages that depend on feedback_page