mirror of
https://github.com/pezkuwichain/pezkuwi-wallet-android.git
synced 2026-04-22 23:07:56 +00:00
31c8c5995f
Complete rebrand of Nova Wallet for Pezkuwichain ecosystem. ## Features - Full Pezkuwichain support (HEZ & PEZ tokens) - Polkadot ecosystem compatibility - Staking, Governance, DeFi, NFTs - XCM cross-chain transfers - Hardware wallet support (Ledger, Polkadot Vault) - WalletConnect v2 - Push notifications ## Languages - English, Turkish, Kurmanci (Kurdish), Spanish, French, German, Russian, Japanese, Chinese, Korean, Portuguese, Vietnamese Based on Nova Wallet by Novasama Technologies GmbH © Dijital Kurdistan Tech Institute 2026
74 lines
3.0 KiB
XML
74 lines
3.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_vertical"
|
|
android:layout_marginHorizontal="16dp"
|
|
android:layout_marginVertical="4dp"
|
|
android:orientation="horizontal">
|
|
|
|
<ImageView
|
|
android:id="@+id/giftAssetIcon"
|
|
style="@style/Widget.Nova.AssetIcon.Primary"
|
|
android:layout_width="40dp"
|
|
android:layout_height="40dp"
|
|
android:layout_marginVertical="12dp"
|
|
android:layout_marginStart="12dp"
|
|
android:background="@drawable/bg_token_container"
|
|
android:src="@drawable/ic_star_filled"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
tools:padding="5dp" />
|
|
|
|
<TextView
|
|
android:id="@+id/giftAmount"
|
|
style="@style/TextAppearance.NovaFoundation.SemiBold.Body"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="12dp"
|
|
android:includeFontPadding="false"
|
|
android:textColor="@color/text_primary"
|
|
app:layout_constraintBottom_toTopOf="@id/giftCreationDate"
|
|
app:layout_constraintStart_toEndOf="@+id/giftAssetIcon"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:layout_constraintVertical_chainStyle="packed"
|
|
tools:text="2 DOT" />
|
|
|
|
<ImageView
|
|
android:id="@+id/giftAmountChevron"
|
|
android:layout_width="22dp"
|
|
android:layout_height="22dp"
|
|
android:layout_marginStart="2dp"
|
|
android:src="@drawable/ic_chevron_right"
|
|
app:layout_constraintBottom_toBottomOf="@+id/giftAmount"
|
|
app:layout_constraintStart_toEndOf="@+id/giftAmount"
|
|
app:layout_constraintTop_toTopOf="@+id/giftAmount" />
|
|
|
|
<TextView
|
|
android:id="@+id/giftCreationDate"
|
|
style="@style/TextAppearance.NovaFoundation.Regular.Footnote"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="12dp"
|
|
android:includeFontPadding="false"
|
|
android:textColor="@color/text_secondary"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintStart_toEndOf="@+id/giftAssetIcon"
|
|
app:layout_constraintTop_toBottomOf="@+id/giftAmount"
|
|
tools:text="Created: 02.10.2025" />
|
|
|
|
<ImageView
|
|
android:id="@+id/giftImage"
|
|
android:layout_width="56dp"
|
|
android:layout_height="56dp"
|
|
android:layout_marginStart="2dp"
|
|
android:layout_marginEnd="12dp"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
tools:src="@drawable/ic_gift_packed" />
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |