Is it possible to add fields to a card that are visible only on Ankidroid?

I know that it is possible to style cards on AnkiDroid differently. But is it possible to add fields that are only visible on AnkiDroid?

Try the following:
Template:

<div class="ankidroid-specific" hidden>{{FieldName}}</div>

Styling:

.android .ankidroid-specific {
    display: block;
}
1 Like

It worked!! Thank you.