showNotImplemented method

void showNotImplemented()

Implementation

void showNotImplemented() {
  showDialog(
      context: this,
      builder: (context) => SimpleDialog(
            shape: RoundedRectangleBorder(
                borderRadius: BorderRadius.circular(20)),
            children: <Widget>[
              SizedBox(
                height: context.height * .05,
              ),
              Center(
                child: Text("NOT IMPLEMENTED YET"),
              ),
              SizedBox(
                height: context.height * .05,
              ),
              Row(
                mainAxisAlignment: MainAxisAlignment.center,
                children: <Widget>[
                  FlatButton(
                      onPressed: () => Navigator.of(this).pop(),
                      child: Text("OK")),
                ],
              )
            ],
          ));
}