skip to Main Content

enter image description herei am integrating stripe payment gateway want to use cardForm but facing issue

expecting to cardForm

2

Answers


  1. enter image description hereadd this to the build/app.

    implementation ‘com.google.android.material:material:1.5.0’

    Login or Signup to reply.
  2. you need add setup theme in style.xml file, cardForm required material so you need install this. but this set up will change some thing in theme.

    <style name="AppTheme" parent="Theme.MaterialComponents.DayNight.NoActionBar">
        <!-- Customize your theme here. -->
        <item name="android:editTextBackground">@drawable/rn_edit_text_material</item>
         <item name="android:colorAccent">#000000</item>
        <item name="android:forceDarkAllowed">false</item>
        <item name="android:textColor">#000000</item>
    </style>
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search