Skip to content

Instantly share code, notes, and snippets.

@carpodok
Last active May 3, 2024 00:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save carpodok/d8efb0fc0adcb27407bfaaa92616aecf to your computer and use it in GitHub Desktop.
Save carpodok/d8efb0fc0adcb27407bfaaa92616aecf to your computer and use it in GitHub Desktop.
Error Shake Effect Medium article source code
import 'dart:math';
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: const MyHomePage(title: 'Error Shake Example'),
debugShowCheckedModeBanner: false,
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({super.key, required this.title});
final String title;
@override
State<MyHomePage> createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
// Controller object of our TextField
final _controllerTextField = TextEditingController();
// Boolean variable to check for errors
bool _isTextFieldError = false;
// GlobalKey object for ShakeWidgetState class
final _textFieldErrorShakeKey = GlobalKey<ShakeWidgetState>();
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: Colors.white,
appBar: AppBar(
centerTitle: true,
title: Text(widget.title),
),
body: Center(
child: SingleChildScrollView(
child: Column(
children: [
Padding(
padding: const EdgeInsets.symmetric(horizontal: 20),
child: ShakeWidget(
key: _textFieldErrorShakeKey,
shakeCount: 3,
shakeOffset: 10,
shakeDuration: Duration(milliseconds: 500),
child: TextField(
maxLines: 1,
onChanged: (text) {
setState(() {
_isTextFieldError = (text.isEmpty);
});
},
controller: _controllerTextField,
decoration: InputDecoration(
labelText: "Input your data",
errorBorder: OutlineInputBorder(
borderRadius: BorderRadius.circular(10.0),
borderSide: BorderSide(color: Colors.red, width: 2.0),
),
focusedErrorBorder: OutlineInputBorder(
borderRadius: BorderRadius.circular(10.0),
borderSide: BorderSide(color: Colors.red, width: 2.0),
),
focusedBorder: OutlineInputBorder(
borderRadius: BorderRadius.circular(10.0),
borderSide:
BorderSide(color: Colors.greenAccent, width: 2.0),
),
enabledBorder: OutlineInputBorder(
borderRadius: BorderRadius.circular(10.0),
borderSide:
BorderSide(color: Colors.lightBlue, width: 1.0),
),
hintText: "Input your data",
errorText: _isTextFieldError
? "This field cannot be left empty" // Error message
: null),
),
),
),
SizedBox(
height: 20,
),
ElevatedButton(
onPressed: () async {
if (_controllerTextField.text.isEmpty) {
// do anything when it gives an error
setState(() {
// update error status
_isTextFieldError = true;
_textFieldErrorShakeKey.currentState?.shakeWidget();
});
} else {
// do anything when it doesn't give an error
var snackBar = SnackBar(
content: Text(
" ${_controllerTextField.text} Data submitted successfully"));
ScaffoldMessenger.of(context).showSnackBar(snackBar);
// to dismiss the on-screen keyboard
FocusManager.instance.primaryFocus?.unfocus();
setState(() {
// update error status
_isTextFieldError = false;
});
}
},
child: Text('Submit Data'),
),
],
),
),
),
);
}
}
class ShakeWidget extends StatefulWidget {
const ShakeWidget({
Key? key,
required this.child,
required this.shakeOffset,
this.shakeCount = 3,
this.shakeDuration = const Duration(milliseconds: 300),
}) : super(key: key);
final Widget child;
final double shakeOffset;
final int shakeCount;
final Duration shakeDuration;
@override
ShakeWidgetState createState() => ShakeWidgetState(shakeDuration);
}
class ShakeWidgetState extends AnimationControllerState<ShakeWidget> {
ShakeWidgetState(Duration duration) : super(duration);
@override
void initState() {
super.initState();
animationController.addStatusListener(_updateAnimationStatus);
}
@override
void dispose() {
animationController.removeStatusListener(_updateAnimationStatus);
super.dispose();
}
void _updateAnimationStatus(AnimationStatus status) {
if (status == AnimationStatus.completed) {
animationController.reset();
}
}
void shakeWidget() {
animationController.forward();
}
@override
Widget build(BuildContext context) {
return AnimatedBuilder(
animation: animationController,
child: widget.child,
builder: (context, child) {
final sineValue =
sin(widget.shakeCount * 2 * pi * animationController.value);
return Transform.translate(
offset: Offset(sineValue * widget.shakeOffset, 0),
child: child,
);
},
);
}
}
abstract class AnimationControllerState<T extends StatefulWidget>
extends State<T> with SingleTickerProviderStateMixin {
AnimationControllerState(this.animationDuration);
final Duration animationDuration;
late final animationController =
AnimationController(vsync: this, duration: animationDuration);
@override
void dispose() {
animationController.dispose();
super.dispose();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment