Skip to content

gleidsonmt/GNAvatarView

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Version Release License Maven Central

This project is part of the set of custom components created for JavaFx.

GNAvatarView

The AvatarView is a simple component used to view one image with a custom avatar.

Create a shape with image for avatar view.

Gradle

How to Include In Gradle Project

dependencies {
    compile 'io.github.Gleidson28:GNAvatarView:1.0.5'
}

Maven

How to Include In Maven Project

<dependency>
  <groupId>io.github.Gleidson28</groupId>
  <artifactId>GNAvatarView</artifactId>
  <version>1.0.5</version>
</dependency>

Basic Usage

GNAvatarView avatarView = new GNAvatarView();
avatarView.setImage(new Image("smile.jpg"));

View