اذهب إلى المحتوى

Motaz Khogali

الأعضاء
  • المساهمات

    1
  • تاريخ الانضمام

  • تاريخ آخر زيارة

آخر الزوار

لوحة آخر الزوار معطلة ولن تظهر للأعضاء

إنجازات Motaz Khogali

عضو مبتدئ

عضو مبتدئ (1/3)

1

السمعة بالموقع

  1. وعليكم السلام موجودة علي flutter باستخدام هذل الكود كمثال class _HomePageState extends State<HomePage> { int _index = 0; @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar(), body: Center( child: SizedBox( height: 200, // card height child: PageView.builder( itemCount: 10, controller: PageController(viewportFraction: 0.7), onPageChanged: (int index) => setState(() => _index = index), itemBuilder: (_, i) { return Transform.scale( scale: i == _index ? 1 : 0.9, child: Card( elevation: 6, shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(20)), child: Center( child: Text( "Card ${i + 1}", style: TextStyle(fontSize: 32), ), ), ), ); }, ), ), ), ); } }
×
×
  • أضف...