Coder Social home page Coder Social logo

Comments (6)

fayeed avatar fayeed commented on June 23, 2024 3

@SushiRoll53 Its really simple you create a function that returns a widget and the function you see a parameter is actually the onSend function you passed to the Dashchat.

Here's an example:

Function sendButtonBuilder(Function onSend) {
  return IconButton(
     icon: Icon(
       Icons.send,
       color: Colors.white  
     ),
     onPress: onSend
  );
}

// Your dashchat code
Dashchat(
  sendButtonBuilder: sendButtonBuilder(),
)

from dash_chat.

PolymathWhiz avatar PolymathWhiz commented on June 23, 2024

One way i'll suggest is to change it from the core code to fit what you want

from dash_chat.

PolymathWhiz avatar PolymathWhiz commented on June 23, 2024

@SushiRoll53 Its really simple you create a function that returns a widget and the function you see a parameter is actually the onSend function you passed to the Dashchat.

Here's an example:

Function sendButtonBuilder(Function onSend) {
  return IconButton(
     icon: Icon(
       Icons.send,
       color: Colors.white  
     ),
     onPress: onSend
  );
}

// Your dashchat code
Dashchat(
  sendButtonBuilder: sendButtonBuilder(),
)

Much better

from dash_chat.

SushiRoll53 avatar SushiRoll53 commented on June 23, 2024

Cool it seems easy, I tried as the following, I had to make some modifications so I was able to run a test

sendButtonBuilder(Function onSend) {
  return IconButton(
     icon: Icon(
       Icons.send,
       color: Colors.white  
     ),
     onPress: onSend
  );
}

Dashchat(
  sendButtonBuilder: sendButtonBuilder(onSend),
)

and the icon does not get replace it.
Do you have another way I can try to solve this?

from dash_chat.

SushiRoll53 avatar SushiRoll53 commented on June 23, 2024

It's me again, for the record I managed to solve with some help, here it is how I could fix it

sendButtonBuilder(Function onSend) {
  return IconButton(
     icon: Icon(
       Icons.send,
       color: Colors.white  
     ),
     onPressed: onSend
  );
}

Dashchat(
  sendButtonBuilder: (function) {
    sendButtonBuilder(function)
  },
)

I'm gonna close it, thank you for your responses.

from dash_chat.

kornha avatar kornha commented on June 23, 2024

Reopening. This does not work, the onSend method does not get triggered. As this is not expected behavior, this is a bug.

from dash_chat.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.