How to use a double cupertino switch on one page in flutter

DevOps

YOUR COSMETIC CARE STARTS HERE

Find the Best Cosmetic Hospitals

Trusted • Curated • Easy

Looking for the right place for a cosmetic procedure? Explore top cosmetic hospitals in one place and choose with confidence.

“Small steps lead to big changes — today is a perfect day to begin.”

Explore Cosmetic Hospitals Compare hospitals, services & options quickly.

✓ Shortlist providers • ✓ Review options • ✓ Take the next step with confidence

To use a double Cupertino switch on a page in Flutter, you can follow these steps:

Step 1:

Add the Cupertino package to your pubspec.yaml file:

dependencies:
  flutter:
    sdk: flutter
  cupertino_icons: ^1.0.2
Code language: CSS (css)

Import the necessary packages in your Dart file:

import 'package:flutter/cupertino.dart';
Code language: JavaScript (javascript)

Create a StatefulWidget for your page. This will allow you to maintain the state of the switches:

class MyPage extends StatefulWidget {
  @override
  _MyPageState createState() => _MyPageState();
}
Code language: PHP (php)

Define the state class _MyPageState and implement it:

class _MyPageState extends State<MyPage> {
  bool switchValue1 = false;
  bool switchValue2 = false;

  @override
  Widget build(BuildContext context) {
    return CupertinoPageScaffold(
      navigationBar: CupertinoNavigationBar(
        middle: Text('Double Cupertino Switch'),
      ),
      child: SafeArea(
        child: Column(
          children: [
            CupertinoSwitch(
              value: switchValue1,
              onChanged: (value) {
                setState(() {
                  switchValue1 = value;
                });
              },
            ),
            CupertinoSwitch(
              value: switchValue2,
              onChanged: (value) {
                setState(() {
                  switchValue2 = value;
                });
              },
            ),
          ],
        ),
      ),
    );
  }
}
Code language: JavaScript (javascript)

Use the CupertinoSwitch widget to display the switches. Each switch should have its own boolean value to store the current state (switchValue1 and switchValue2 in this example). The onChanged callback allows you to update the state when the switch is toggled.

Subscribe
Notify of
guest

This site uses Akismet to reduce spam. Learn how your comment data is processed.

0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x