Skip to content
Snippets Groups Projects
Select Git revision
  • master default protected
  • 9-improve-app-metadata
  • 2-add-api-call-to-get-and-display-user-data
  • Release_0.8.0_22 protected
  • Release_0.7.2_21 protected
  • Release_0.7.1_20 protected
  • Release_0.7.0_19 protected
  • Release_0.6.0_18 protected
  • Release_0.5.0_17 protected
  • Release_0.4.0_16 protected
  • Release_0.3.2_15 protected
  • Release_0.3.1_14 protected
  • Release_0.3.0_13 protected
  • Release_0.2.1_12 protected
  • Release_0.2.0_11 protected
  • Release_0.1.2_10 protected
  • Release_0.1.1_9 protected
  • Release_0.1.0_8 protected
  • Release_0.0.7_7 protected
  • Release_0.0.6_6 protected
  • Release_0.0.5_5 protected
  • Release_0.0.4_4 protected
  • Release_0.0.3_3 protected
23 results

settings.dart

Blame
  • settings.dart 688 B
    import 'package:flutter/material.dart';
    import 'package:flutter_custom_toolbox/flutter_toolbox.dart';
    
    class ScreenSettings extends StatelessWidget {
      const ScreenSettings({super.key});
    
      @override
      Widget build(BuildContext context) {
        return const Padding(
          padding: EdgeInsets.symmetric(horizontal: 8),
          child: Column(
            mainAxisAlignment: MainAxisAlignment.start,
            crossAxisAlignment: CrossAxisAlignment.start,
            mainAxisSize: MainAxisSize.max,
            children: <Widget>[
              SizedBox(height: 8),
              AppTitle(text: 'settings_title'),
              SizedBox(height: 8),
              ApplicationSettingsForm(),
            ],
          ),
        );
      }
    }