Skip to content

impaktfull/flutter_impaktfull_ui

Repository files navigation

impaktfull_ui

A UI library of impaktfull.

test publish to github pages live_demo

Disclaimer

impaktfull_ui is still in unstable & untested. everything under <1.0.0 should not be used unless you want to test it

Purpose

This UI library was built to have a simple way to build UIs for impaktfull. This will limit the maintenance cost of open-source projects and make it easier to build applications. That way we can focus on building new tools & features instead of bugfixing and maintaining UI changes from Flutter.

  • Open-source example projects
  • impaktfull applications

Demo

Live Web Demo

Usage

Setup

  • Setup your theme (colors, textStyles, shadows, dimens, assets)
  • Use ImapktfullUiApp
  • Use the components provided in the UI library

Component List

Components are always prefixed with ImpaktfullUi to avoid conflicts with other libraries.

  • ImpaktfullUiAccordion
  • ImpaktfullUiAdaptiveNavBar
  • ImpaktfullUiAdaptiveNavBarAction
  • ImpaktfullUiAdaptiveScreen
  • ImpaktfullUiAdaptivePageRoute
  • ImpaktfullUiAdaptiveSafeArea
  • ImpaktfullUiApp
  • ImpaktfullUiAssetWidget
    • ImpaktfullUiAsset.icon
    • ImpaktfullUiAsset.svg
    • ImpaktfullUiAsset.image
    • ImpaktfullUiAsset.lottie
    • ImpaktfullUiAsset.rive
  • ImpaktfullUiAutoComplete
  • ImpaktfullUiAutoLayout
  • ImpaktfullUiAvatar
  • ImpaktfullUiBadge
  • ImpaktfullUiBottomNavigation
    • ImpaktfullUiBottomNavigationItem
  • ImpaktfullUiBottomSheet
  • ImpaktfullUiButton
  • ImpaktfullUiCalendar
    • ImpaktfullUiCalendarList
    • ImpaktfullUiCalendarWeek
  • ImpaktfullUiCheckBox
  • ImpaktfullUiCmsHeader
  • ImpaktfullUiColorPicker
  • ImpaktfullUiCommandMenu
    • ImpaktfullUiCommandMenu
  • ImpaktfullUiDatePicker
    • ImpaktfullUiDatePicker.range
  • ImpaktfullUiTimePicker
  • ImpaktfullUiDivider
  • ImpaktfullUiDesktopPageRoute
  • ImpaktfullUiDropdown
  • ImpaktfullUiFocusFeedback
  • ImpaktfullUiFilePicker
  • ImpaktfullUiFloatingActionButton
  • ImpaktfullUiFluidPadding
  • ImpaktfullUiGridView
  • ImpaktfullUiHoverFeedback
  • ImpaktfullUiHorizontalTabs
    • ImpaktfullUiHorizontalTab
  • ImpaktfullUiIconButton
  • ImpaktfullUiImageCrop
  • ImpaktfullUiInputField
  • ImpaktfullUiLineChart
  • ImpaktfullUiListItem
    • ImpaktfullUiSimpleListItem
  • ImpaktfullUiListView
  • ImpaktfullUiLoadingErrorData
  • ImpaktfullUiLoadingIndicator
  • ImpaktfullUiMetric
  • ImpaktfullUiModal
  • ImpaktfullUiNavBar
  • ImpaktfullUiNetworkImage
  • ImpaktfullUiNotification
  • ImpaktfullUiNotificationBadge
  • ImpaktfullUiNumberInput
  • ImpaktfullUiPagination
  • ImpaktfullUiPlaceholderState
  • ImpaktfullUiRadioButton
  • ImpaktfullUiRadioButtonListItem
  • ImpaktfullUiRefreshIndicator
  • ImpaktfullUiResponsiveLayout
  • ImpaktfullUiResponsiveRow
  • ImpaktfullUiScreen
  • ImpaktfullUiSectionTitle
  • ImpaktfullUiSelectableListItem
  • ImpaktfullUiSeparatedColumn
  • ImpaktfullUiSideNavigation
    • ImpaktfullUiSideNavigationItem
  • ImpaktfullUiSkeleton
  • ImpaktfullUiSnackyConfigurator
  • ImpaktfullUiStepper
  • ImpaktfullUiSwitch
  • ImpaktfullUiSwitchListItem
  • ImpaktfullUiTabBar
    • ImpaktfullUiTabBarItem
  • ImpaktfullUiTable
    • ImpaktfullUiTableHeader
      • ImpaktfullUiTableHeaderItem
    • ImpaktfullUiTableRow
      • ImpaktfullUiTableRowItem
  • ImpaktfullUiTheme
  • ImpaktfullUiTooltip
  • ImpaktfullUiTouchFeedback
  • ImpaktfullUiUnifiedScreenLayout
  • ImpaktfullUiWrap
  • ImpaktfullUiWysiwyg

Future

Much more components to come in the future, always with the focus on minimizing maintenance and maximizing a recognizable UI/brand for impaktfull (Checkout the TODO list below)

Building Blocks

  • ImpaktfullUiBBForgetPassword
  • ImpaktfullUiBBLicensesScreen
  • ImpaktfullUiBBLogin
  • ImpaktfullUiBBNotFound
  • ImpaktfullUiBBRegister
  • ImpaktfullUiBBVerifyRegisterCode

Future

Much more building blocks to come in the future.

Examples

  • Dashboard

Future

Much more examples to come in the future.

Theming

The provided theme contains the default impaktfull branding. But it is super important for us that the theme is easy to configure and highly configurable. That is why we choose for component based theming.

Assets

Images

These images animations can be overriden by adding your own files to your assets folder. The only thing you need to do extra is override package (in your own project)

  • asssets/images/logo.svg
  • asssets/images/splash_logo.svg

Lottie Animations

These lottie animations can be overriden by adding your own files to your assets folder. The only thing you need to do extra is override package (in your own project)

  • assets/lottie/loading.json

Icons

These icons can be overriden in the theme itself. By adding your own IconData.

  • add
  • arrowLeft
  • arrowRight
  • arrowUp
  • arrowDown
  • check
  • chevronDown
  • chevronLeft
  • chevronRight
  • chevronUp
  • circle
  • close
  • confetti
  • copy
  • delete
  • edit
  • error
  • home
  • info
  • lineVertical
  • list
  • logout
  • minus
  • moreHorizontal
  • moreVertical
  • search
  • settings
  • success
  • user
  • warning
  • wysiwygBold
  • wysiwygCode
  • wysiwygCodeBlock
  • wysiwygHeader
  • wysiwygItalic
  • wysiwygLink
  • wysiwygOrderedList
  • wysiwygPhoto
  • wysiwygUnorderedList
  • wysiwygUnorderedListItem

Todo

⌛️ Add tests

  • Add screenshot tests for all components

⌛️ Add extra components

  • ImpaktfullUiSlider
  • ImpaktfullUiSegmentedControll
  • ImpaktfullUiBreadcrumbs
  • ImpaktfullUiQrCode
  • ImpaktfullUiBarCode
  • ImpaktfullUiBarChart
  • ImpaktfullUiPieChart
  • ImpaktfullUiDateTimePicker
  • ImpaktfullUiDateTimePickerDialog
  • ImpaktfullUiPasswordStrengthIndicator
  • ImpaktfullUiGallery
  • ImpaktfullUiStoryView
  • ImpaktfullUiStoryViewItem
  • ImpaktfullUiVidoPlayerControls
  • ImpaktfullUiFileCropper
  • ImpaktfullUiSocialLoginsButton
  • ImpaktfullUiImageComparisonView
  • ImpaktfullUiWebView
  • ImpaktfullUiQrCodeScanner
  • ImpaktfullUiBarcodeScanner
  • ImpaktfullUiHtml
  • ImpaktfullUiWysiwyg (HTML)
  • ImpaktfullUiRating

⌛️ Add CustomRoutes

  • ImpaktfullUiIosModalRoute

⌛️ Add addaptive components

  • ImpaktfullUiMasterDetail
  • ImpaktfullUiAdaptiveNavigation
  • ImpaktfullUiAdaptiveRoute
  • ImpaktfullUiAdaptiveModalRoute

⌛️ Add building blocks

  • ImpaktfullUiBBMoreScreen
  • ImpaktfullUiBBDebugScreen
  • ImpaktfullUiBBPrivacyPolicyScreen
  • ImpaktfullUiBBTermsAndConditionsScreen

⌛️ Add examples

  • Signup
  • Forget Password
  • Reset password
  • 404
  • Verify code

License

You are free to use this library as long as you give credit to impaktfull. You can use it for commercial and non-commercial projects. See the LICENSE file for more information.