1.0.2 • Published 3 years ago

react-native-styled-dialogs v1.0.2

Weekly downloads
12
License
Apache License
Repository
-
Last release
3 years ago
ReactNative: Native Styled Dialogs (Android/iOS)

If this project has helped you out, please support us with a star 🌟

This library shows a beautiful and customizable designed dialog with header.

Android: MaterialStyledDialogs
iOS: PMAlertController

📖 Getting started

$ yarn add react-native-styled-dialogs

This library is supported React Native 60 and above

  • iOS

iOS Prerequisite: Please make sure CocoaPods is installed on your system

- Add the following to your `Podfile` -> `ios/Podfile` and run pod update:
  use_frameworks! :linkage => :static

  pod 'PMAlertController', :git => 'https://github.com/prscX/PMAlertController', :branch => 'swift-version-fix'

  # Follow [Flipper iOS Setup Guidelines](https://fbflipper.com/docs/getting-started/ios-native)
  # This is required because iOSPhotoEditor is implemented using Swift and we have to use use_frameworks! in Podfile
  $static_framework = ['FlipperKit', 'Flipper', 'Flipper-Folly',
    'CocoaAsyncSocket', 'ComponentKit', 'Flipper-DoubleConversion',
    'Flipper-Glog', 'Flipper-PeerTalk', 'Flipper-RSocket', 'Yoga', 'YogaKit',
    'CocoaLibEvent', 'OpenSSL-Universal', 'boost-for-react-native']
  
  pre_install do |installer|
    Pod::Installer::Xcode::TargetValidator.send(:define_method, :verify_no_static_framework_transitive_dependencies) {}
    installer.pod_targets.each do |pod|
        if $static_framework.include?(pod.name)
          def pod.build_type;
            Pod::BuildType.static_library
          end
        end
      end
  end
  
  • Please make sure Flipper iOS Setup Guidelines steps are added to Podfile, since iOSPhotoEditor is implemented using Swift and we have to use use_frameworks! in Podfile
  • Android

💻 Usage

import RNStyledDialogs from 'react-native-styled-dialogs';

RNStyledDialogs.Show({
  title: "Awesome!",
  description:
    "Glad to you like RNStyledDialogs! If you are up for it, we would like to appreciate you receiving us.",
  positiveText: "Go",
  neutralText: "Close",
  negativeText: "Later",
  onPositive: () => { },
  onNeutral: () => { },
  onNegative: () => { },
  onCancellable: () => { }
});

💡 Props

  • Props: Generic
PropTypeDefaultNote
titlestringSpecify title on dialogs
descriptionstringSpecify description on dialog
positiveTextstringSpecify positive button text
neutralTextstringSpecify neutral button text
negativeTextstringSpecify positive negative button text
headerBackgroundColorstring - HEX COLOR#FFFFFFSpecify header background color
headerIconstringSpecify header icon
dialogAnimationbooltrueSpecify dialog animation (enable/disable)
darkerOverlayboolfalseSpecify dialog overlay (enable/disable)
cancelableboolSpecify cancelable of dialog behaviour (enable/disable)
autoDismissboolfalseSpecify dialog should get automatically dismiss or not (enable/disable)
onPositivefuncSpecify positive click callback function
onNeutralboolSpecify netural click callback function
onNegativeboolSpecify negative click callback function
onCancellationbooltrueSpecify cancellation callback function
  • Props: Android
PropTypeDefaultNote
headerBackgroundImagestringSpecify header background image
headerTitlestringSpecify header title
headerIconAnimationbooltrueSpecify header icon animation (enable/disable)
scrollableboolfalseSpecify description scrollable (enable/disable)
maxLinesnumber5Specify description max number of lines
  • Props: iOS
PropTypeDefaultNote
positiveTextColorstring - HEX COLORSpecify positive button text color
positiveBackgroundColorstring - HEX COLOR#FFFFFFSpecify positive button background color
neutralTextColorstring - HEX COLORSpecify neutral button text color
neutralBackgroundColorstring - HEX COLOR#FFFFFFSpecify neutral button background color
negativeTextColorstring - HEX COLORSpecify negative button text color
negativeBackgroundColorstring - HEX COLOR#FFFFFFSpecify negative button background color

Icons

Note: Since we are using native libraries, we have not found a solution in order to render RN Images in production, therefore please copy all your image assets in platform specific folders:

  • Android: Please copy your image assets in app resource drawable folder
  • iOS: Please copy your image assets in app resources folder

Please refer example application for the image usage.

✨ Credits

🤔 How to contribute

Have an idea? Found a bug? Please raise to ISSUES. Contributions are welcome and are greatly appreciated! Every little bit helps, and credit will always be given.

💫 Where is this library used?

If you are using this library in one of your projects, add it in this list below. ✨

📜 License

This library is provided under the Apache License.

RNStyledDialogs @ prscX

💖 Support my projects

I open-source almost everything I can, and I try to reply everyone needing help using these projects. Obviously, this takes time. You can integrate and use these projects in your applications for free! You can even change the source code and redistribute (even resell it).

However, if you get some profit from this or just want to encourage me to continue creating stuff, there are few ways you can do it:

  • Starring and sharing the projects you like 🚀
  • If you're feeling especially charitable, please follow prscX on GitHub.

    Thanks! ❤️ prscX.github.io </ Pranav >

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

5 years ago

0.0.7

5 years ago

0.0.6

5 years ago

0.0.5

6 years ago

0.0.4

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago

0.0.0

6 years ago