Skip to main content

Checked! Task Pro - BlackBerry 10

Built for Blackberry Designation with over 170 five stars reviews!


Rated Best Task application on BB 10

Rated Best Calendar Add-on on BB 10

Rated Best Note Taker on BB 10


New features:

  1. Auto-save Note feature - fastest note entry
  2. Headless support for automatic synchronization with Remember
  3. Business/task template: create task template for each of your customers, supplier, business contact and quickly generate new task base on the template - using the new duplicate task feature (waiting for Blackberry approval)
  4. New archive feature to help you organize notes/task without clustering your primary view
  5. Now support GTD - Getting Things Done and MYN task methodologies - combined both methodology into the new SMART system.
  6. New Daily View showing all calendar entries and Task-specific entries


Features:

  1. Select specific Calendar to use with your task application in setting option
  2. Sub Task in Outline mode supporting multiple layers and sub tasks, each with its own event time, due date, attachment, etc.
  3. Smart Add featuring natural language parsing for automatic reminder creation such as:
    1. Finish tax in 5 days
    2. Dr Johns appointment on Dec 1 at 5pm
    3. Pick up sister at airport tomorrow
  4. Smart Recurring task feature with settings such as daily at every x day, weekly at every x week with customizable day settings.
  5. Project/Category view option with many features such as Add to Project, default Project features, etc.
  6. Support multiple default view option: Outline mode, Project/Feature, Priority, Creation Date, Due Date mode, etc.
  7. Fully integrated to Remember and Evernote
  8. Fully integrated with Google Calendar, BlackBerry® Calendar and reminder. All in one shop for your needs!
  9. Support Exchange Outlook and Exchange Outlook Task (BES user only). I recommend setting default category feature for Exchange Task - otherwise non-category task is not sync to Outlook.
  10. Integrated audio record feature allowing recording audio and writing note at the same time.
  11. Archive feature to help you organize notes/task without clustering your primary view
  12. Record multiple audios per note
  13. Voice to Text feature (click and hold on the Microphone)
  14. Attach and view any file type
  15. Smart Search, Smart List, Smart Photo, and Smart Search feature
  16. Many more features for your discovery.

Instructions:


Comments

Popular posts from this blog

Checked Task Pro Instruction (BlackBerry 10)

  Checked Instruction I just started working on this page, please send me comments and suggestions that could improve this site. Please note that if you use the Android app, the instruction is similar to the BlackBerry app below. I will create a separate instruction page for Android app soon. Contents 1  Initial Set-up after Installation 2  SMART task system that combine the best of GTD (Getting Things Done) and MYN  3  Smart Add - natural language date parser 4  ***NEW*** Shortcuts 5  Back-up and Restore - How to Transfer data from one device to another 6  BES - Work Space - Add a public app from the BlackBerry World storefront 7  Settings options that will definitely increase your productivity 8  Automatically add email as task 9  Tips on improving performance 10  Add a category 11  Delete a category 12  Keep categories permanently 13  Add sub-task 14  Automatic Synchronize from remember 15  Sort options 16  How to add recurrent task and edit advance calendar detail 17  Outlook.com a

New Site

Testing the new site! The focus will be on Project Portfolio Management and Software Development. Hope everyone's having a great day!

React Native - Global StyleSheet and Dark/Light Theme design approach

We use StyleSheet in almost all components. Generally there are three different approaches to changing component layout with React Native: Direct layout change in the component (e.g. text field) Create a StyleSheet section in each page Create a Global StyleSheet and reference in each component Personally speaking, I do not recommend the first 2 options due to: maintenance and inconsistency approach in design between different components harder to transfer to a new project. with GlobalStyles, you can put on a separate windows for easy view and update as you work on different component apply the dark/light theme to the component directly through GlobalStyles without having to customize it for each page Theme - Dark and Light theme with React Native with iOS, Android, Web, etc. Warning: if you use Expo Debugging, the system will default to Light theme (at least on iOS). Remove Remote Debugging if you want the Dark Theme to show up. In your Navigagor, apply the theme: const scheme = useCol