adaptive_thom_dev 1.0.2 copy "adaptive_thom_dev: ^1.0.2" to clipboard
adaptive_thom_dev: ^1.0.2 copied to clipboard

Adaptive platform android & IOS. Change scaffold, text, button and alert.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:adaptive_thom_dev/adaptive_thom_dev.dart';
void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const MyHomePage(title: 'Flutter Demo Home Page'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  const MyHomePage({Key? key, required this.title}) : super(key: key);
  final String title;

  @override
  State<MyHomePage> createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {

  @override
  Widget build(BuildContext context) {
    return Adaptive.scaffold(
      string: "Version android & IOS", 
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.spaceEvenly,
          children: [
          Adaptive.text(string:"Test du package adaptive_thom_dev", color: Colors.red),
          Adaptive.button(
            child: Adaptive.text(string:"Press Me", color: Colors.green), 
            onPressed: (){
              Adaptive.alert(context: context,callback: (){
                Navigator.of(context).pop();
              });
            } 
          )

        
          ],
        )
      ));
  }
}
0
likes
130
pub points
0%
popularity

Publisher

unverified uploader

Adaptive platform android & IOS. Change scaffold, text, button and alert.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on adaptive_thom_dev