apex_flutter_sdk 1.0.5 copy "apex_flutter_sdk: ^1.0.5" to clipboard
apex_flutter_sdk: ^1.0.5 copied to clipboard

discontinued
outdated

ApexTeam flutter software development kit for ApexTeam co. Open and free for everyone to use <3

example/lib/main.dart

import 'package:apex_flutter_sdk/apex_flutter_sdk.dart';
import 'package:flutter/material.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: MyHomePage(title: 'Flutter Demo Home Page'),
    );
  }
}

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

  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  int _counter = 0;

  void _incrementCounter() {
    setState(() {
      _counter++;
    });
  }

  String _test = '';

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: WebInput(
        size: Size(200, 300),
        textDirection: TextDirection.rtl,
        maxLength: 50,
        onChange: (value) {
          print(value);
          setState(() {
            _test = value;
          });
        },
        onFocusChange: (isFocused) {
          print(isFocused);
        },
        placeholder: 'text',
        multiLine: true,
        boxDecoration: BoxDecoration(
          shape: BoxShape.rectangle,
          border: Border(
            bottom: BorderSide(color: Colors.blue, width: 1),
          ),
        ),
      ),
      floatingActionButton: FloatingActionButton(
        onPressed: _incrementCounter,
        tooltip: 'Increment',
        child: Icon(Icons.add),
      ),
    );
  }
}
9
likes
0
pub points
18%
popularity

Publisher

verified publisherpacks.apexteam.net

ApexTeam flutter software development kit for ApexTeam co. Open and free for everyone to use <3

Homepage

License

unknown (LICENSE)

Dependencies

flutter, intl, shamsi_date

More

Packages that depend on apex_flutter_sdk