Search
 
SCRIPT & CODE EXAMPLE
 

CSHARP

Expansion tile

ExpansionTile(
        leading: Icon(
          Icons.settings,
          color: headingcolor,
        ),
        trailing: Icon(
          Icons.arrow_forward_ios_rounded,
          size: 10.0,
          color: defaultcolor,
        ),
        title: Text(
          "Settings",
          style: TextStyle(
            color: headingcolor,
          ),
        ),
        children: <Widget>[
          DrawerListTile(
            title: "Terms",
            svgSrc: Icon(
              Icons.rule_sharp,
              color: headingcolor,
            ),
            press: () {
              Get.offAll(
                () => SettingsScreenMainTerms(),
                duration: Duration(milliseconds: 400), //
                transition: Transition.zoom,
              );
            },
          ),
          DrawerListTile(
            title: "Notifications",
            svgSrc: Icon(
              Icons.edit_notifications_rounded,
              color: headingcolor,
            ),
            press: () {
              Get.offAll(
                () => SettingsScreenMainNotifications(),
                duration: Duration(milliseconds: 400), //
                transition: Transition.zoom,
              );
            },
          ),
        ],
      ),
Comment

PREVIOUS NEXT
Code Example
Csharp :: get quaternion from vector unity 
Csharp :: c# iterate sorteddictionary 
Csharp :: listbox items to string c# 
Csharp :: longest substring without repeating characters 
Csharp :: c# math method to reverse negative or positive 
Csharp :: c# method returns multiple values 
Csharp :: two linked list intersection 
Csharp :: dynamically add rows to datagridview c# 
Csharp :: searching for keys in the registry 
Csharp :: c# add strings 
Csharp :: remove scenedelegate 
Csharp :: convert path to uri c# 
Csharp :: how to return a value in c# 
Csharp :: c# float 
Csharp :: for statement syntax C sharp 
Csharp :: unity c# find object position in array 
Csharp :: push c# array 
Csharp :: c#l list<string initialize 
Csharp :: c# list any retun indec 
Csharp :: how to make a block disappear in unity 
Csharp :: list array 
Csharp :: how to get relative path in c# 
Csharp :: how to know pm or am C# 
Csharp :: windows forms webbrowser refresh 
Csharp :: unity stop velocity movement 
Csharp :: unity hide mouse first person 
Csharp :: example of List c# 
Csharp :: dictionary.add values to array c# 
Csharp :: how to check if button is pressed unity 
Csharp :: c# move directory 
ADD CONTENT
Topic
Content
Source link
Name
8+2 =