التخطيط الدوراني ( WrapLayout )
بسم الله الرحمن الرحيم
السلام عليكم ورحمة الله وبركاته
هذا التخطيط يقوم بترتيب العناصر حسب المساحة المتوفرة ويبدًا صف جديد عندما تكون المساحة غير كافية للعنصر
خصائص التخطيط
orientation التوجية وتقبل قيمتين هما horizontally أفقيا و vertically رأسيا افتراضيًا هو horizontally
وitemWidth يستخدم لتحديد عرض العنصر في التخطيط
وitemHeight يستخدم لتحديد ارتفاع العنصر في التخطيط
مثال على التخطيط
<Page xmlns="http://schemas.nativescript.org/tns.xsd">
<WrapLayout orientation="horizontal" width="210" height="210" style.backgroundColor="lightgray">
<Button text="تخطيط" width="70" height="70" backgroundColor="red"/>
<Button text="الدوران" width="70" height="70" backgroundColor="green"/>
<Button text="عالم" width="70" height="70" backgroundColor="blue"/>
<Button text="البرمجة" width="70" height="70" backgroundColor="yellow"/>
</WrapLayout>
</Page>
بإستخدام خاصية orientation راسي vertical
<Page xmlns="http://schemas.nativescript.org/tns.xsd">
<WrapLayout orientation="vertical" width="210" height="210" style.backgroundColor="lightgray">
<Button text="تخطيط" width="70" height="70" backgroundColor="red"/>
<Button text="الدوران" width="70" height="70" backgroundColor="green"/>
<Button text="عالم" width="70" height="70" backgroundColor="blue"/>
<Button text="البرمجة" width="70" height="70" backgroundColor="yellow"/>
</WrapLayout>
</Page>
بإستخدام itemWidth و itemHeight
<Page xmlns="http://schemas.nativescript.org/tns.xsd">
<WrapLayout orientation="vertical" itemWidth="50" itemHeight="50" width="210" height="210" style.backgroundColor="lightgray">
<Button text="تخطيط" width="70" height="70" backgroundColor="red"/>
<Button text="الدوران" width="70" height="70" backgroundColor="green"/>
<Button text="عالم" width="70" height="70" backgroundColor="blue"/>
<Button text="البرمجة" width="70" height="70" backgroundColor="yellow"/>
</WrapLayout>
</Page>
محتوى الدورة
عن الدرس
0 إعجاب |
0 متابع |
0 مشاركة |
2240 مشاهدات |
منذ 6 سنوات |
التعليقات (0)
عرض المزيد.. جديد مقالاتي
لايوجد لديك حساب في عالم البرمجة؟
تحب تنضم لعالم البرمجة؟ وتنشئ عالمك الخاص، تنشر المقالات، الدورات، تشارك المبرمجين وتساعد الآخرين، اشترك الآن بخطوات يسيرة !