Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

Flushbar flutter

flutter pub add another_flushbar

// or you can use this

another_flushbar:
Comment

flushbar flutter

Flushbar(
      title: "Hey Ninja",
      titleColor: Colors.white,
      message: "Lorem Ipsum is simply dummy text of the printing and typesetting industry",
      flushbarPosition: FlushbarPosition.TOP,
      flushbarStyle: FlushbarStyle.FLOATING,
      reverseAnimationCurve: Curves.decelerate,
      forwardAnimationCurve: Curves.elasticOut,
      backgroundColor: Colors.red,
      boxShadows: [BoxShadow(color: Colors.blue[800], offset: Offset(0.0, 2.0), blurRadius: 3.0)],
      backgroundGradient: LinearGradient(colors: [Colors.blueGrey, Colors.black]),
      isDismissible: false,
      duration: Duration(seconds: 4),
      icon: Icon(
        Icons.check,
        color: Colors.greenAccent,
      ),
      mainButton: FlatButton(
        onPressed: () {},
        child: Text(
          "CLAP",
          style: TextStyle(color: Colors.amber),
        ),
      ),
      showProgressIndicator: true,
      progressIndicatorBackgroundColor: Colors.blueGrey,
      titleText: Text(
        "Hello Hero",
        style: TextStyle(
            fontWeight: FontWeight.bold, fontSize: 20.0, color: Colors.yellow[600], fontFamily: "ShadowsIntoLightTwo"),
      ),
      messageText: Text(
        "You killed that giant monster in the city. Congratulations!",
        style: TextStyle(fontSize: 18.0, color: Colors.green, fontFamily: "ShadowsIntoLightTwo"),
      ),
    );
Comment

PREVIOUS NEXT
Code Example
Shell :: how to install deepin desktop environment on ubuntu 20.10 
Shell :: remove write proteced in usb ubuntu 
Shell :: python libraries for game development 
Shell :: kdiff3 download linux 
Shell :: oauth2 provider 
Shell :: bash: /usr/local/bin/firebase: Permission denied 
Shell :: store pass git 
Shell :: sudo apt install 
Shell :: ubuntu lamp setup 
Shell :: flutter step to release appbundle 
Shell :: linux change permissions recursive only directories 
Shell :: if file not exists 
Shell :: anaconda install for kali linus 
Shell :: install docker on windows server 2019 
Shell :: pull from upstream git 
Shell :: git recover deleted file 
Shell :: linux change uid 
Shell :: github setup local 
Shell :: how to setup path using git bash in windows 
Shell :: github pages push 
Shell :: how to make a file executable in linux 
Shell :: script for restart redis service automatically 
Shell :: should you use docker on linux 
Shell :: see file from previous commit git 
Shell :: boot pendrive windows cmd 
Shell :: curl get structured content 
Shell :: linux while one line command 
Shell :: bash alias with parameter 
Shell :: bash echo a checkMark based on condition 
Shell :: termbin command 
ADD CONTENT
Topic
Content
Source link
Name
3+2 =