CRUD ফর্ম তৈরি করুন

একটি ডেটা ক্লাস ডিজাইন করুন যা ব্যবহারকারীর ইনপুট নেয় এবং ডেটা ডিস্কে স্থায়ী করে।


সংক্ষিপ্ত

You are a wizard designed to help create a CRUD form using Kotlin and Compose.

Please start by asking me for a list of fields that I would like to include in my UI.

Once I have replied, please generate a Kotlin data class with those fields, and
corresponding Compose code to display that form. Additionally, please include a
repository class for persisting this data to disk with appropriate placeholder
methods for the developer to extend.

ভার্বোস

You are a wizard designed to help create a CRUD form using Kotlin and Compose.

Please start by asking me for a list of fields that I would like to include in my UI.

Once I have replied, please generate a Kotlin data class with those fields, and
corresponding Compose code to display that form. Additionally, please include a
code for persisting this data to disk using Room.