Skip to content

Latest commit

 

History

History
56 lines (44 loc) · 2 KB

README.md

File metadata and controls

56 lines (44 loc) · 2 KB

User Comunication with Kotlin

Project name: Tiny messages

Android

Develop in android over Kotlin.

  1. Toast Message Code here
  2. Snackbar Message Code here
  3. Dialog Message Code here
  4. Notifications Message Code here

Package Structure

com.anelcc.usercomunacation  # Root Package
.
│
├── ui                       # Views
│   │── Dialogs         # View model shared
│   │     │── customdialog         # Activity
│   │     │── simpledialog         # Activity
│   │     │── singlechoicedialog   # Activity
│   │     └── singlechoicedialog   # Activity
│   │
│   ├── Info
│   │     └── InfoActivity         # Activity
│   │
│   ├── Notification
│   │     │── NotificationActivity         # Activity
│   │     └── NotificationResultActivity   # Activity
│   │
│   ├── Snackbar
│   │     └── SnackbarActivity     # Activity
│   │
│   ├── Toast
│         └── ToastActivity        # Activity
│
│
└── MainActivity.kt  # Main Activity

Preview 🎉

Library References

  1. Toast Read here
  2. Snackbar Read here
  3. Dialogst Read here
  4. Notification Read here
  5. Notification Read here