Skip to content

📱Android Library to implement beautiful dialogs in android apps easily

Notifications You must be signed in to change notification settings

dhiya15/Flat-Dialog-Android

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Flat-Dialog

platform License

Installation

Add this in your root build.gradle file (not your module build.gradle file):

allprojects {
	repositories {
		...
		maven { url "https://jitpack.io" }
	}
}

Dependency

Add this to your module's build.gradle file (make sure the version matches the JitPack badge above):

dependencies {
	...
	implementation 'com.github.mejdi14:Flat-Dialog-Android:1.0.4'
}

Screenshots

How to use

 final FlatDialog flatDialog = new FlatDialog(ExempleActivity.this);
        flatDialog.setTitle("Login")
                .setSubtitle("write your profile info here")
                .setFirstTextFieldHint("email")
                .setSecondTextFieldHint("password")
                .setFirstButtonText("CONNECT")
                .setSecondButtonText("CANCEL")
                .withFirstButtonListner(new View.OnClickListener() {
                    @Override
                    public void onClick(View view) {
                        Toast.makeText(ExempleActivity.this, flatDialog.getFirstTextField(), Toast.LENGTH_SHORT).show();
                    }
                })
                .withSecondButtonListner(new View.OnClickListener() {
                    @Override
                    public void onClick(View view) {
                        flatDialog.dismiss();
                    }
                })
                .show();

More useful methods

Method Description
isCancelable(boolean)
setIcon(image) Add an image at the top of the dialog
setBackgroundColor(color) Change the dialog background color
setFirstTextFieldHint(String) Set a hint for the edittext
setFirstTextFieldTextColor(color) Set the edittext text color
setFirstTextFieldBorderColor(color) Set the border color for the edittext
setFirstTextFieldInputType(type) Set the input type for the edittext
setFirstButtonColor(color) Set the button background color

Contributing

Any contributions, large or small, major features, bug fixes, are welcomed and appreciated

About

📱Android Library to implement beautiful dialogs in android apps easily

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 100.0%